Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
250 views
in Technique[技术] by (71.8m points)

javascript - Sending variable data in iframe website and submit it

Is it possible to send data to the iframe website form and submit the form? Like I want to track shipment number and this is the code

<?php
$tracking = 'LE783579177';
?>

<iframe src="http://leopardscourier.com/pk/tracking/" width="100%" height="100%" ></iframe>

I want to open the tracking form in an iframe and pass the tracking no and submit it. Is it possible?

question from:https://stackoverflow.com/questions/65652160/sending-variable-data-in-iframe-website-and-submit-it

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use postMessage() to handle such a case - https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...