将所有 jquery 脚本放在母版页中

发布于 2024-09-28 20:57:43 字数 206 浏览 3 评论 0原文

我在我的网络应用程序中使用 jquery 和 jquery ui 插件。 我有一些 ASP.NET 服务器控件,它们在页面上注册脚本。 由于我的应用程序应该在本地工作,我可以将所有脚本放在母版页中吗? 所有脚本我指的是 jquery 脚本和 jquery Ui 脚本,例如 DatePicker 对话框和效果。 还是有更好的方法存在? 因为我想在我的所有页面和用户控件中使用jquery。 谢谢。

i am using jquery and jquery ui plugins in my web application.
and i have some asp.net server controls that they register their scripts on the page.
Since my application should be work Local could i put all scripts in master page ?
all scripts i mean jquery script and jquery Ui scripts such as DatePicker Dialog and effects.
or is there any better way exist?
because i want to jquery in all my pages and user Controls.
thanks.

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

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

发布评论

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

评论(2

童话里做英雄 2024-10-05 20:57:43

如果您打算在每个页面上都使用它们,那么将它们粘贴到母版中绝对是最简单的方法。

听起来您像是单独包含所有脚本,但您可以只包含一个 jQuery UI 文件,例如:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>

Sticking them in the master is definitely the simplest approach if you intend to have them available on every page.

It sounds like you're including all the scripts individually though, you can include just one file for jQuery UI, for instance:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
鸠魁 2024-10-05 20:57:43

是的,将它们全部放入母版页中。
下载后,它们将被缓存在浏览器中(如果尚未缓存)

Yes, put them all in the Master Page.
Once they're downloaded, they'll be cached in the browser (if they already aren't)

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