jquery.load() 不加载部分视图中的脚本
当我调用时,
$('#test').load('<%= VirtualPathUtility.ToAbsolute("~/Home/Helper") %>', { pass: null });
所有内容已加载,但未
<script>...</script>
加载。为什么??
when i call
$('#test').load('<%= VirtualPathUtility.ToAbsolute("~/Home/Helper") %>', { pass: null });
all content is loaded, but
<script>...</script>
not loading. why??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此方法是从服务器获取数据的最简单方法。
它大致相当于
$.get(url, data, success)
,只不过它是一个方法而不是全局函数,并且它有一个隐式回调函数。当检测到成功响应时(即当 textStatus 为“success”或“notmodified”时),.load() 将匹配元素的 HTML 内容 设置为返回的数据。
有关详细信息,请参阅 http://api.jquery.com/load/
This method is the simplest way to fetch data from the server.
It is roughly equivalent to
$.get(url, data, success)
except that it is a method rather than global function and it has an implicit callback function.When a successful response is detected (i.e. when textStatus is "success" or "notmodified"), .load() sets the HTML contents of the matched element to the returned data.
For details refer http://api.jquery.com/load/
尝试使用 head.js 安装。
Try using head.js insted.