gpt4 book ai didi

javascript - 将 jQuery 添加到母版页

转载 作者:行者123 更新时间:2023-11-30 13:42:20 25 4
gpt4 key购买 nike

我的 ASP.NET 常规页面中有以下 jquery

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Color Items</title>
<script src="http://code.jquery.com/jquery-latest.js"
type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("select option:even").addClass('evenColor');
});
</script>
<style type="text/css">
.evenColor
{
background-color:Gray;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Text="Gori"></asp:ListItem>
<asp:ListItem Text="Muf"></asp:ListItem>
<asp:ListItem Text="Lizo"></asp:ListItem>
</asp:DropDownList>
</div>
</form>
</body>
</html>

现在我想将其转换为母版页。我无法弄清楚将添加到母版页中的内容以及内容页中的内容。脚本会转到 MasterPage 吗?

请注意:我有很多这样的带有独立 jquery 文件的常规 asp.net 页面。我必须将所有这些 jquery 文件添加到一个母版页中吗?

正确的做法是什么?

最佳答案

一定要在母版页中添加对常用 jquery 文件的引用。

我会将页面特定的 javascript 留给该页面,尽管其他人(尤其是在性能非常重要的情况下)会争论将其尽可能多地编译到一个文件中,仅使用页面上的特定命令。

关于javascript - 将 jQuery 添加到母版页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1587853/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com