選択ボックスでの選択に基づいて、Intex の div にコンテンツをロードしようとしています。うまくいかないので、何かが間違っています。基本的にどのようになっているのかを示すために、4 つのページの例を作成しました。
Index.html
one.html
two.html
three.html
インデックスには、ID「selectchoice」の選択要素があります。
<select id="selectchoice>
<option>Select a choice</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
また、インデックスに「get_content」という ID の div があります。
<div id="get_content"></div>
select 要素をオプション 1 または 2 または 3 に変更すると、one.html または two.html または three.html を div get_content にロードします。
次に、このコードをヘッダーの Index.html の jQuery ファイル リンクの後に配置します。
<script>
$("#selectchoice").change(function(){
$("#get_content").load("");
$("#get_content").load("one.html");
$("#get_content").load("two.html");
$("#get_content").load("three.html");
});
次に、サイトを実行します (同じサイトで動作する他のロード スクリプトを含むサーバー上で) が、動作しません。なにが問題ですか?:/
scrips とプログラミングは初めてなので、標準エラーが発生しても驚かないでください。
エラーを見つけた人はいますか?