$("input").blur( function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
2015-09-01
$(this).attr("class", "red");
$(this).addClass("red");
$(this).addClass("red");
2015-09-01
<script type="text/javascript">
$(function () {
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
</script>
$(function () {
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
</script>
2015-09-01
$("#content").css({"background-color":"red","color":"white"});
2015-09-01