stucked我已經找遍了網站,但我無法找到任何東西,幫助我,所以這裏是:jQuery的ajax的load方法裝載
我有這個HTML文件,當你點擊Get EXTERN它應該把extern.html中的內容放入div命名的內容中,但是當你點擊它顯示的加載鏈接時就會陷入困境,就是這樣。
的test.html文件
<script type="text/javascript" src="jquery-1.9.1.js"></script>
<script type="text/javascript"><!--
$(document).ready(function() {
// select all the links with class="lnk", when one of them is clicked, get its "href" value
// adds a "loading..." notification, load the content from that URL and
// place only the paragraph which is in the #cnt into the tag with id="content"
$('a.lnk').click(function() {
var url = $(this).attr('href');
$('#content').html('<h4>Loading...</h4>').load(url+ ' #cnt p');
return false;
});
});
--></script>
</head>
<body>
<h1>Web page test.html</h1>
<a href="extern.html" title="Get extern" class="lnk">Get extern</a>
<div id="content">Initial content in test.html</div>
extern.html文件
<h2>Content in extern.html</h2>
<div id="cnt"><p>Some text content in extern.html</p></div>
由於href有一個相對的URL,它不會是SOP。 – Musa 2013-03-17 02:14:07
@Musa確實。我沒有注意到我第一次閱讀它......但它並不真正影響這兩個建議。謝謝! – Steven 2013-03-17 02:40:47