$("body").append($(".red").html());
这个不能复制标签的属性
这个不能复制标签的属性
2015-01-14
$($html).appendTo("div");不能写成$("$html").appendTo("div");
2015-01-14
<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-01-14
$("#frmTest :checked").attr("disabled", true);
2015-01-13