使用 jquery .load 方法加载 aspx 页面

发布于 2024-11-30 05:12:04 字数 188 浏览 2 评论 0原文

在我的页面中,我有一个下拉菜单,可以过滤我们拥有的餐饮选项。我使用 jquery .load 重新加载列表。我的问题是我正在使用squishit 来压缩并组合我的css/js 文件,我需要在我尝试加载的aspx 页面中再次引用它。我做对了吗?或者是否有正确的方法将相同的 css/javascript 引用到我正在加载的 aspx 页面?

谢谢。

In my page I have a dropdown that filter through the dining options that we have. I use jquery .load to reload the list. My problem is I'm using squishit to compress and combined my css/js files and I need to reference this again in the aspx page that I try to load. Am I doing it right? or is there a proper way of referencing the same css/javascript to the aspx page i'm loading?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小情绪 2024-12-07 05:12:04

恕我直言,不要使用 jquery 的 .load 函数,因为它在 IE 6,7 上不起作用,而是使用常规 $.ajax() 。

您还可以使用 $.getScript() 将脚本加载到内存中。

IMHO do not use .load function of jquery , since it will not work on IE 6,7 , instead i would use regular $.ajax().

Also you can use $.getScript() to load script to memory.

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