程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> javascript-母頁引用的css和js 創建的內容頁下不起作用

javascript-母頁引用的css和js 創建的內容頁下不起作用

編輯:編程解疑
母頁引用的css和js 創建的內容頁下不起作用
 母頁的head
<head id="head1" runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>


    <link href="Scripts/Plugin/EasyUI/themes/default/easyui.css" rel="stylesheet" />
    <link href="Scripts/Plugin/EasyUI/themes/icon.css" rel="stylesheet" />
    <link href="Styles/icon.css" rel="stylesheet" />
    <link href="Styles/common.css" rel="stylesheet" />
    <link href="Scripts/Plugin/showloading/showLoading.css" rel="stylesheet" />
    <script src="Scripts/jquery-1.8.0.min.js"></script>
    <script src="Scripts/Plugin/EasyUI/jquery.easyui.min.js"></script>
    <script src="Scripts/jquery-extend.js"></script>
    <script src="Scripts/jquery-control-extend.js"></script>
    <script src="Scripts/Plugin/showloading/jquery.showLoading.min.js"></script>
    <script src="Scripts/json2.js"></script>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
</head>



子頁的 head
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">

    <script src="../../Scripts/jquery.uploadify-v2.1.0/swfobject.js" type="text/javascript"></script>
    <link href="../Scripts/jquery.uploadify-v2.1.0/example/css/default.css" rel="stylesheet" />
    <link href="../Scripts/jquery.uploadify-v2.1.0/uploadify.css" rel="stylesheet" />
    <script src="../Scripts/jquery.uploadify-v2.1.0/jquery.uploadify.v2.1.0.min.js"></script>
    <script src="../Scripts/jquery.uploadify-v2.1.0/swfobject.js"></script>

</asp:Content>

最佳回答:


你aspx路徑都搞錯了吧。。一個是../../,一個是../,都是同一個scripts目錄。。

直接用絕對路徑,從根目錄算起,如果你的scripts文件夾在根目錄下,路徑直接寫成下面的,其他的一起改過來

  <script src="/Scripts/jquery-1.8.0.min.js"></script>
    <script src="/Scripts/Plugin/EasyUI/jquery.easyui.min.js"></script>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved