我有一小段代码,它基本上发出请求,并将结果抛出console.log
(我省略了我的密钥和签名)。
问题是它似乎从来没有提出请求。
感谢您的帮助,我是新手,我还在学习中。
//alert('you clicked on the discgolf button');
$('#zipsubmit').click(function(){
dgZipSearch(); // call this function perform DGCR search and
populate the page with results
});
function dgZipSearch(){
alert('foo1');
$.ajax({
url:'http://www.dgcr-api.com/?key=xxxxx&mode=findzip&zip=' + $('#zipcode').val() + '&rad=10&sig=yyyyyyy',
dataType: 'jsonp',
success: function(zip_results){
console.log(zip_results);
}
});
alert('foo2');
};