我的父窗口中有这个 iFrame...
<iFrame src="http://theirdomain.com" id="Post_iFrame"></iFrame>
然后我有jquery脚本......
$(document).ready(function(){
$(document).on("click","#transfer",function() {
var $currentIFrame = $('#Post_iFrame');
$currentIFrame.contents().find("body #Name1").val("My new value");
});
});
我正在尝试#Name1
在 iframe 中找到文本字段并填充此输入,My new value
但没有任何反应。有什么建议么?