试过没问题了。
$(function () {
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
$(function () {
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
2015-03-02
$("#content").removeClass("blue","white");
2015-03-01
<script type="text/javascript">
$("ol>:first-child").css("background-color", "green");
</script>
$("ol>:first-child").css("background-color", "green");
</script>
2015-03-01
看不懂的可以学点web后端基础,前端也是需要的!推荐网址:慕课网-学习计划 http://www.imooc.com/course/programdetail/pid/19
2015-03-01
$("span").each(function () {
var index=$(this).index();
if (index == 1) {
$(this).attr("class", "red");
}
});index()是从1开始吗
var index=$(this).index();
if (index == 1) {
$(this).attr("class", "red");
}
});index()是从1开始吗
2015-02-28
$(function () {
$("div").click(function () {
$(this).addClass("color");
});
}); 直接点击可以触发事件,干嘛还要个,jqury很多功能都有了,还要这个trigger触发干嘛,莫非就是为了自定义事件准备的
$("div").click(function () {
$(this).addClass("color");
});
}); 直接点击可以触发事件,干嘛还要个,jqury很多功能都有了,还要这个trigger触发干嘛,莫非就是为了自定义事件准备的
2015-02-27