親ウィンドウにこの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");
});
});
iframe でテキスト フィールドを見つけて、#Name1
この入力に入力しようとしていますMy new value
が、何も起こりません。助言がありますか?