<button id="btntest">点我</button>
<script type="text/javascript">
$("#btntest").attr("disabled","true");
</script>
或者
<button id="btntest">点我</button>
<script type="text/javascript">
$("button").attr("disabled","true");
</script>
<script type="text/javascript">
$("#btntest").attr("disabled","true");
</script>
或者
<button id="btntest">点我</button>
<script type="text/javascript">
$("button").attr("disabled","true");
</script>
2016-03-09
$("#default").html($("#divtest").html());
2016-03-09
$()就是jQuery中的函数,它的功能是获得()中指定的标签元素。如示例中$(“p”)会得到一组P标签元素,其中“p”表示CSS中的标签选择器。$()中的()不一定是指定元素,也可能是函数。
在jQuery中 $()方法等价于jQuery()方法,前者比较常用,是后者的简写。一般只有在$()与其它语言冲突时才会使用jQuery()方法。
在jQuery中 $()方法等价于jQuery()方法,前者比较常用,是后者的简写。一般只有在$()与其它语言冲突时才会使用jQuery()方法。
2016-03-09
$("#default").html($("#divtest").html());
2016-03-09
$(function () {
$("div").hover(
function () {
$(this).toggleClass("orange");
});
});
$("div").hover(
function () {
$(this).toggleClass("orange");
});
});
2016-03-09