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