把要异步加载的页面中,需要执行的js,写在load()方法的回调函数中执行:
$(selector).load(url,data,function(response,status,xhr))
$('.layui-tab-content').load("../index.html",function () {
//这里是异步加载的index.html页面 需要执行的js
});
来源:oschina
链接:https://my.oschina.net/u/4381645/blog/4278128