私はこのマークアップと、json.txt
これと同じディレクトリにあるファイルを持っています.imコンテンツを取得できません..また、私のfirebugでエラーが発生しません
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
$.get('/json.txt',
function(data) {
$('div.result').html(data);
});
});
</script>
</head>
<body>
<div class="result"></div>
</body>
</html>