我正在使用mvc5应用程序,目前我有以下解决方案布局
MyApplication
---->**Properties**
---->**References**
---->**App_Data**
---->**Content**
---->*HTML*
---->TestPage.html
---->*JS*
---->menu.js
在我的javascript文件中,我试图将TestPage.html
引导到div上。
$('.expandable-item').click(function() {
$('#menu').load("../HTML/TestPage.html");
});
在我的控制台中,我得到一个基本的404错误说明
GET http://localhost:50712/HTML/HtmlPage1.html 404 (Not Found)
所以我不太确定如何访问该html文件。
答案 0 :(得分:0)
JQuery加载方法发送http请求并且不在文件系统上运行,因此您需要将代码更改为:
$('.expandable-item').click(function() {
$('#menu').load("/Content/HTML/TestPage.html");
});