可能重复:
使用 AJAX 加载外部内容
我对 JQuery 编程非常陌生,并试图将不同的网页加载到单独的 div 中,但我似乎无法让它工作,我做错了什么?
这是每个 div id 的页面加载
$(function(){
$('#google').load('https://www.google.nl/');
$('#bing').load('http://www.bing.com/');
});
以及用于显示多个页面的其余代码:
<div data-role="page" id="main">
<div data-role="header" data-position="fixed">
<h1>Search</h1>
</div>
<div data-role="content">
<h2>define your choice</h2>
<p>Go to: <a href="#google">google</a></p>
<p>Go to: <a href="#bing">bing</a></p>
</div>
<div data-role="footer" data-position="fixed">
<h4>Footer</h4>
</div>
</div>
<!-- Start of second page -->
<div data-role="page" id="GameFart" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>google</h1>
</div>
<div data-role="content">
<div id="google">
</div>
<div data-role="footer" data-position="fixed">
<h4>Footer</h4>
</div>
</div>
<!-- Start of third page -->
<div data-role="page" id="GameSpecials" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>bing</h1>
</div>
<div data-role="content">
<div id="bing">
</div>
<div data-role="footer" data-position="fixed">
<h4>Footer</h4>
</div>
</div>