Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面调用另一个页面使用:
$("#Go").click(function () { $("#view").load("test.php"); refreshId = setInterval(function() { $("#view").load("test.php"); }, 1000); });
这工作正常。
我的问题是 test.php 可以使用 jquery 更新父页面上的复选框吗?
你可以使用callback function这个
callback function
$('#view').load('test.php', function() { // manipulate your DOM });
阅读文档http://api.jquery.com/load/