基本ajax交互

前端之家收集整理的这篇文章主要介绍了基本ajax交互前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

HTML 和js

<script src="jquery-1.11.3.min.js"></script>

<button class="js-getJson">GO</button>

<script>
getJson();
function getJson() {
$(".js-getJson").click(function(){
$.ajax({
url : 'data.json',
dataType : 'json',
success : function(data) {
alert(data['name']);
$(".js-getJson").text("aaaa");
},
error : function(e) {
alert(e);
}
});
});
}
</script>

json

{
"name": "你是靓仔",
"data": "设计师",
"other": "前端"
}

效果

原文链接:https://www.f2er.com/ajax/160592.html

猜你在找的Ajax相关文章