我搜索了互联网,直到我变蓝,但无法弄清楚它为什么不起作用。
我有javascript,但这仅适用于firefox。没有其他浏览器。
所以,我决定去jQuery。
我想做的是: - 我有一个文件夹。- 在这个文件夹中,我有一个 html.html 文件。这是我的主要网站。- 然后我有一个文件 home.html。
html.html 看起来像这样:
<html>
<head>
<title>
Struggeling with jQuery ajax! *******
</title>
</head>
<body>
<div="one">
Load the page here
</div>
</body>
</html>
home.html 看起来像这样:
<html>
<head>
</head>
<body>
Please load this into the div! (this text will be displayed in other words)
</body>
</html>
我到底怎么能用 jQuery 得到这个?请帮我。我无法做到这一点。
==================================================== ====================================
好的,这就是现在的样子。在我的文件中,我有 home.html:
<html>
<head>
<title>
Struggeling with jQuery ajax! *******
</title>
<script language="javascript" src="jQuery.js"></script>
<script>
$(document).ready(function() {
$("#one").load("html.html body");
});
</script>
</head>
<body>
<div id="one">
Load the page here
</div>
</body>
</html>
我下载了 jQuery 的开发版本,这是 home.html 所在的文件(jQuery.js)。
然后在另一个 html.html 中看起来像这样:
<html>
<head>
</head>
<body>
Please load this into the div! (this text will be displayed in other words)
</body>
</html>
但这不起作用。我没有收到“请将此加载到 div 中!(此文本将显示为换句话说)”