コードは次のとおりです。
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
</head>
<body>
<div class ="click"> Click me <div>
<div class = "file"></div>
<script>
$(document).ready(function(){
$(".click").click(function(){
$.ajax({
beforeSend: function(){
$(".file").html('<img src="a.gif" alt="Smiley face" height="42" width="42">' )
},
url: 'a.txt',
type: "GET",
data: ({
"id" : 0
}),
success:function(results){
console.log("inside success");
$(".file").html('results');
}
});
});
});
</script>
</body>
</html>
ここでの問題は、success:function が呼び出されないことです...結果が得られません..スピナーだけです...私のa.txt
ファイルは、この html と同じフォルダーにあります。a.txt の内容は<br> Hello world <br>
.