ここで私は何が間違っていますか?私は別のIDをクリックすると、 "ジャージー"のIDでdivに外部txtとhtmlをロードするようにしようとしています。私は何もクリックしていない今、同じままになります。AJAX?選択したIDのコンテキストを読み込まない
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"> </script>
<script type="text/javascript">
$(document).ready(function() {
$("#test").click(function() {
$("#jersey").load("ajaxtest.txt");
});
$("#testtwo").click(function() {
$("#jersey").load("ajaxtesttwo.html");
});
});
</script>
</head>
<body>
<a href="#" id="test">Test 1</a>||<a href="#" id="testtwo">Test 2</a>
<div id="jersey">what a wonderful world</div>
<br clear="all" />
</body>
</html>
@Elvanos - 号 'load'があることないあなたのために – Quentin
コードには明らかに間違ったことはありません。私はそれがうまくいかない理由を考えることができますが、あなたがブラウザにDeveloper Toolsを開いてConsoleを見れば明らかです。その非常に基本的なデバッグを済ませましたか? – Quentin
ここにあなたの答えのリンクがありますこれをチェックしてください[http://stackoverflow.com/questions/10752055/cross-origin-requests-are-only-support-for-http-error-when-loading-a-local]( http://stackoverflow.com/questions/10752055/cross-origin-requests-are-only-support-for-http-error-when-loading-a-local) – Asad