使用 asp.net 母版页将 jquery 脚本内联到单独的 js 文件

发布于 2024-08-09 01:51:26 字数 73 浏览 4 评论 0原文

大家好, 如何将 aspx 中使用的内联 jquery 脚本包含到具有 asp.net 母版页的单独 js 文件中

Hai guys,
How to include inline jquery scripts used in an aspx to a separate js file with asp.net master pages

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

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

发布评论

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

评论(1

ぽ尐不点ル 2024-08-16 01:51:26

您的母版页可以有一个指向核心 Jquery 文件的脚本链接:

<html>
<head runat="server" >
    <title>Master page title</title>
    //link to Jquery script
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <asp:contentplaceholder id="Head" runat="server" />
</head>
<body>
.
<asp:contentplaceholder id="Main" runat="server" />
.
</body>

ASPX 页面可以有仅特定于该页面的其他脚本链接

<% @ Page Language="C#" MasterPageFile="~/Master.master" Title="Content Page 1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="Head" Runat="Server">
    //other scripts specific to this page only
    <script type="text/javascript" src="js/jquery.plugin.abc.js"></script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Main" Runat="Server">
    Main content.
</asp:Content>

Your masterpage can have a script link to the core Jquery file:

<html>
<head runat="server" >
    <title>Master page title</title>
    //link to Jquery script
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <asp:contentplaceholder id="Head" runat="server" />
</head>
<body>
.
<asp:contentplaceholder id="Main" runat="server" />
.
</body>

ASPX page can have other script links specific to the page only

<% @ Page Language="C#" MasterPageFile="~/Master.master" Title="Content Page 1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="Head" Runat="Server">
    //other scripts specific to this page only
    <script type="text/javascript" src="js/jquery.plugin.abc.js"></script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Main" Runat="Server">
    Main content.
</asp:Content>

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