jquery中调用天气预报API(ajax)
$.getScript('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js', function(_result) {
if (remote_ip_info.ret == '1') {
$.ajax({
type: "GET",
url: "http://wthrcdn.etouch.cn/weather_mini?city="+remote_ip_info.city,
data: "",
success: function(msg){
console.log(msg);
}
});
}
});
jquery显示数据库数据怎么输出
jquery就是javascript,是客户端的脚本语言,是没有办法直接访问数据库的。 如果需要与数据库进行交互,就用ajax。 你如果对ajax不了解的话就到网上看看,有很多现成的教程。 jquery自带ajax的函数,比如$.ajax,$.post,$.get等等。
ajax参数
ajax函数的参数有:
options、async、cache、contentType、context、data、dataFilter、dataType、error、global、ifModified、jsonp、processData等。