我想知道为什么这是不可能的......
我有一个带有 iframe 的文件 index.php
index.php
->iframe.php
index.php 文件已执行jquery.js,并在 iframe 上我写了这个
window.jQuery = window.$ = parent.jQuery;
$(document).ready(function(){
$("div#test").html('Hello World');
});
我知道这可能不是很有用,但我想知道这样的事情是否可能。