使用 jquery .load 方法加载 aspx 页面
在我的页面中,我有一个下拉菜单,可以过滤我们拥有的餐饮选项。我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
恕我直言,不要使用 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.