我正在使用MVC 4,試圖從.JS文件加載.csHtml文件,但我保持得到錯誤「未找到」 有沒有其他辦法可以解決?從.JS加載/調用csHtml
這裏是我的jQuery代碼:
$(document).ready(function() {
$('.show-sidebar').on('click', function() {
$('div#main').toggleClass('sidebar-show');
setTimeout(MessagesMenuWidth, 250);
});
var ajax_url = location.hash.replace(/^#/, '');
if (ajax_url.length < 1) {
ajax_url = 'Views/Home/index.cshtml'; //<<<< when the browser load i get the msg "not found"
}
................
................
您不希望網絡服務器提供.cshtml文件 - 您是否試圖在'/ Home/Index'加載視圖? – McGarnagle
多數民衆贊成在正確的我想加載在/ home /索引 –