2
你好我想用jQuery的load方法如何運行jQuery的load方法
我的文件(testPage.cshtml)
mvcProject
Views
Base
index.cshtml (<div id="test"></div>)
testPage.cshtml
page.html
客戶端(不工作...)
jQuery('#test').load('/Views/testPage.cshtml'); or
jQuery('#test').load('/Views/page.html');
但我想再試一次,正在工作..
mvcProject(root)
testPage.html (<div id="test"></div>)
jQuery('#test').load('testPage.html');
我該如何獲得網址?有類似的東西嗎? 例如:
var html = findPath(testPage.html)
jQuery('#test').load(html);
謝謝你..
是否確實被包裝成'jQuery的(文件)。就緒這個(函數(){//code here});'? – Hless
hello不僅我想加載到html div內容 –
我認爲客戶端不知道文件系統路徑...我認爲你必須實現你自己的findPath或解析url路徑服務器端。 –