$("li:first-child").css("background-color", "green");
我的理解是先找到所有的li,然后判断这个li对于他的父元素是不是first-child
我的理解是先找到所有的li,然后判断这个li对于他的父元素是不是first-child
2016-06-07
$.getJSON("http://www.imooc.com/data/sport.json",function(data){
$this.attr("disabled", "true");
$.each(data, function (index, sport) {
$("ul").append("<li>" + sport["name"] + "</li>");
}); });
$this.attr("disabled", "true");
$.each(data, function (index, sport) {
$("ul").append("<li>" + sport["name"] + "</li>");
}); });
2016-06-07
$("#seltest").on('change', function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
2016-06-07
<script type="text/javascript">
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle();
})
});
</script>
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle();
})
});
</script>
2016-06-06
$(function () {
$("h3").animate({
width: "80px",
height: "80px"
},
3000, function () {
$("#tip").html("执行完成!");
});
});
$("h3").animate({
width: "80px",
height: "80px"
},
3000, function () {
$("#tip").html("执行完成!");
});
});
2016-06-06
$("h4").bind("click", function () {
$("ul").toggle(200,function(){
$spn.html() == "隐藏" ? $spn.html("显示") : $spn.html("隐藏");
});
});
$("ul").toggle(200,function(){
$spn.html() == "隐藏" ? $spn.html("显示") : $spn.html("隐藏");
});
});
2016-06-06
css( )方法的格式:
$("#content").css({"background-color":"red","color":"white"});
真是难为我了。。。。
$("#content").css({"background-color":"red","color":"white"});
真是难为我了。。。。
2016-06-06
$("select").on("change", function () {
if ($(this).val() == "苹果"|| $(this).val() == "香蕉")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
为什么香蕉的不能编程红色啊
if ($(this).val() == "苹果"|| $(this).val() == "香蕉")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
为什么香蕉的不能编程红色啊
2016-06-06
$("#frmTest :submit[type='submit']").addClass("bg_red");
$("#frmTest input:submit")会改变下面两个框
$("#frmTest :submit")只改变中间的框
:submit 选择器选取类型为 submit 的 <button> 和 <input> 元素。
如果 <button> 元素没有定义类型,大多数浏览器会把该元素当作类型为 submit 的按钮。
$("#frmTest input:submit")会改变下面两个框
$("#frmTest :submit")只改变中间的框
:submit 选择器选取类型为 submit 的 <button> 和 <input> 元素。
如果 <button> 元素没有定义类型,大多数浏览器会把该元素当作类型为 submit 的按钮。
2016-06-06