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.
在 index.html 上;用户的操作将触发 .load() 事件,该事件将 php 生成的文档加载到 div 上。加载的文档将包含一些 javascript 代码。我想调用最初在 index.html 上定义的 javascript 函数。如何做呢?简单地在加载的文档上调用该函数是行不通的。
在加载函数的回调参数中调用你想要的函数
content.load("../includes/fetch.php",{ 'data':url },function(){ whatever_function(); } );
http://api.jquery.com/load/
您想要索引页面上的所有 javascript,使用 --.on()处理现在和未来。这意味着您可以将某些内容加载到 adiv中并使其仍然有效。如果您尝试在动态加载的 php 上使用相关的 javascript,它将无法正常工作。
.on()
div