我如何使用这样的东西来解析远程json,但是当文档准备就绪时运行,而不是在按下按钮时运行?
jQuery(document).ready(function($){
$.getJSON("https://example.com/example.json", function(data){
var name = data.fullname; //note the data.data
alert(name);
});
});
由于
答案 0 :(得分:1)
添加按钮
<button id="action_button">Click Me</button>
然后使用jquery
$(document).ready(function(){
$('#action_button').on('click', function(){
$.getJSON("https://example.com/example.json", function(data){
var name = data.fullname; //note the data.data
alert(name);
});
});
});