$(document).ready(
function(){$("a").click(function(){
if($("a").html()=="更多"){
$("a").html("简化");
$(".ll").toggle();
}else {
$("a").text("更多");
$(".ll").toggle();
}
});
});
function(){$("a").click(function(){
if($("a").html()=="更多"){
$("a").html("简化");
$(".ll").toggle();
}else {
$("a").text("更多");
$(".ll").toggle();
}
});
});
其实 我感觉就会一个id的就可以 var name = $("#name").val(); 感觉这个用的多。跑题太远
2016-03-25
XMLHttpRequest cannot load http://www.imooc.com/data/fruit_part.html. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access.
谷歌浏览器,报错
谷歌浏览器,报错
2016-03-25
最新回答 / 未名轩
首先你的html()方法在load()方法之前执行,所以load()会覆盖掉,其次load和html的区别:load可以加载远程资源,而html是改变所匹配的 HTML 元素的内容(类似innerHTML)。
2016-03-24
最赞回答 / 慕課君
这个很好理解,1.首先赋予一个value给input等于0,然后判断value=0时,执行代码show,然后value=1;2、当value等于1时,执行代码hide,然后value赋予0;3、他们被绑定在了一个点击事件上,bind。
2016-03-24
$(function () { $("#btnShow").bind("click", function () { var $this = $(this); $.getJSON("Data/http://www.imooc.com/data/sport.json",function(data){ $this.attr("disabled", "true"); $.each(data, function (index, sport) {if(index==3) $("ul").append("<li>" + sport["name"] + "</li>"); }); }); }) });
2016-03-24
已采纳回答 / 北极熊的梦想
$redHTML和redHTML加了$符号的代表被封装成jQuery对象,可以调用jQuery的API,不加$的就是普通的javascript对象,不能调用jQuery的API,在你这里用起来是一样的,因为只是使用了redHTML里存储的值,不需要调用jQuery的方法
2016-03-24