在主页中使用 jquery

using jquery in masterpages

亲爱的程序员大家好 我在母版页中使用 jquery 时遇到了一个愚蠢的麻烦,我希望在母版页本身而不是母版页的相关页面中调用函数。 这是我的母版页的标题

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="CMS_master.master.cs" Inherits="CMS_master" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
    <link href="css/Exclusive_fonts.css" rel="stylesheet" />
    <link href="Content/bootstrap.min.css" rel="stylesheet" />
    <link href="css/CMS_Style.css" rel="stylesheet" />
    <script src="<%ResolveUrl("~/Scripts/jquery-3.1.1.min.js"); %>" type="text/javascript">
                   window.alert("a");
    </script>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
</head>

挫折是jquery和javascripts代码无法识别和呈现。 我知道有些问题可能已经回答了这个问题,但 none 对我有用。

您在脚本标签中有 2 个拼写错误。您忘记了 = 符号并删除末尾的 ;

<script src="<%= ResolveUrl("~/Scripts/jquery-3.1.1.min.js") %>" type="text/javascript"></script>

这在 html 中呈现为 src="/Scripts/jquery-3.1.1.min.js"