青くなるまでインターネットを検索しましたが、これとなぜ機能しないのかわかりません。
私は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にロードしてください!(このテキストは言い換えれば表示されます)」が表示されません