<script type="text/javascript">
$(document).ready(function(){
$('#btn').on('click',function(){
var $this = $(this)
// 获取到按钮元素赋值给变量
$.getJSON('new_file.json',function(data){
// 用.getJSON()方法获取到 JSON 内的数组,用data进行操作
$this.attr("disabled","true")
// 禁用元素 使其失去作用
$.each(data, function(index,sport) {
// 遍历 data 数组 (index代表数组下标 sport代表数组值)
if(index == 2 ){
$('p').append(sport["name"])
// 找到下标 2 在选中的元素内加上 sport.name
}
});
})
})
})
</script>
Anoxia_
Jerps
慕瓜9220888
随时随地看视频慕课网APP
相关分类