jquery.load() 不加载部分视图中的脚本

发布于 2024-10-10 04:32:08 字数 230 浏览 2 评论 0原文

当我调用时,

$('#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的呼吸 2024-10-17 04:32:08

此方法是从服务器获取数据的最简单方法。

它大致相当于$.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/

像极了他 2024-10-17 04:32:08

尝试使用 head.js 安装。

Try using head.js insted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文