http://www.imooc.com/data/check_f.php 这个php的文件,只有一句话“等于0”,这是在逗我们么
2017-02-15
json数据格式
[
{ "name": "跑步"},
{ "name": "爬山"},
{ "name": "游泳"}
]
[
{ "name": "跑步"},
{ "name": "爬山"},
{ "name": "游泳"}
]
2017-02-14
看我的结果,谁的输入任何数字都是0??
你输入的 4 是 大于0
你输入的 -7 是 小于0
你输入的 0 是 等于0
你输入的 4 是 大于0
你输入的 -7 是 小于0
你输入的 0 是 等于0
2017-02-14
这是js文件内容
var data = [{
"name": "足球"
}, {
"name": "散步"
}, {
"name": "篮球"
}, {
"name": "乒乓球"
}, {
"name": "骑自行车"
}];
$.each(data, function (index, sport) {
if (index == 1)
$("ul").append("<li>" + sport["name"] + "</li>");
});
var data = [{
"name": "足球"
}, {
"name": "散步"
}, {
"name": "篮球"
}, {
"name": "乒乓球"
}, {
"name": "骑自行车"
}];
$.each(data, function (index, sport) {
if (index == 1)
$("ul").append("<li>" + sport["name"] + "</li>");
});
2017-02-14
$(document).ajaxStart(function() {
$('#divload').html("正在请求数据...");
});
$(document).ajaxStop(function() {
$('#divload').html("数据请求完成!");
});
$('#divload').html("正在请求数据...");
});
$(document).ajaxStop(function() {
$('#divload').html("数据请求完成!");
});
2017-02-13
.ajaxStart()和.ajaxStop()方法,与.ready()方法一样,只能由$(document)调用。
$(document).ajaxStart(function()
$(document).ajaxStop(function()
$(document).ajaxStart(function()
$(document).ajaxStop(function()
2017-02-13