<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.min.js"></script>
<script>
$.ajax({
url: 'xxxxx.ashx', dataType: 'json', success: function (json) {
console.log(json)
alert(json.xxxx)//xxx行為json對象屬性
}, error: function (xhr) { alert('動態頁有問題或者json格式不標准'+xhr.responseText)}
})
</script>