<ul></ul>
<script type="text/javascript">
$(function(){
var jsonData=[
{"name": "Alice","age": 22},
{"name":"Ace","age": 26},
{"name": "Jhon","age": 23}
];
<script type="text/javascript">
$(function(){
var jsonData=[
{"name": "Alice","age": 22},
{"name":"Ace","age": 26},
{"name": "Jhon","age": 23}
];
//$(selector).get(url,data,success(response,status,xhr),dataType)
补充一下,要符合get的参数规则,因为json是数据类型(dataType),所以不能省
补充一下,要符合get的参数规则,因为json是数据类型(dataType),所以不能省
2016-06-04
确实 不看评论差点懵逼了 其实估计想表达的意思是相当于手动触发了一次 其实就是主动触发了 页面加载完直接就触发
2016-06-03
记得要在链接后面加上" li",这样才不会把最上面的“测试部分”显示出来,.load("http://www.imooc.com/data/fruit_part.html li",function()
2016-06-03
$(function () {
$("#btntest").ready(function(){
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
});
});
});
$("#btntest").ready(function(){
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
});
});
});
2016-06-03
$(document).ready(function(){
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
2016-06-03
$("#abc").click(function(){
if($("#abc").text()=='更多'){
$("#abc").html('简化');
$("li:hidden").show();
} else {
$("#abc").html('更多');
$("li:eq(4)").hide();
$("li:eq(5)").hide();
}
})
if($("#abc").text()=='更多'){
$("#abc").html('简化');
$("li:hidden").show();
} else {
$("#abc").html('更多');
$("li:eq(4)").hide();
$("li:eq(5)").hide();
}
})
$(".red").wrapInner("<em></em>");或
$(".red").wrap("<em></em");
$(".red").wrap("<em></em");
2016-06-03