$("#default").html()=$("#divtest").html();
2016-06-22
$("form *").attr("disabled","");这样也能通过 为甚啊
2016-06-22
<script type="text/javascript">
$(function () {
$("select").bind("change", function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
});
</script>
$(function () {
$("select").bind("change", function () {
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
})
});
</script>
2016-06-22
$(function () {
$("input")
.bind("focus", function () {
$("div").html("请输入您的姓名!");
})
这后面讲的我看的好困难啊
.bind("blur", function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
});
$("input")
.bind("focus", function () {
$("div").html("请输入您的姓名!");
})
这后面讲的我看的好困难啊
.bind("blur", function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
});
2016-06-22
$(function () {
$("div").bind("change-color", function () {
$(this).addClass("color");
});
$("div").trigger("change-color");
});
这颜色不看评论完全不知道有木有效果
.color
{
color: red;
}改个代码好看点
$("div").bind("change-color", function () {
$(this).addClass("color");
});
$("div").trigger("change-color");
});
这颜色不看评论完全不知道有木有效果
.color
{
color: red;
}改个代码好看点
2016-06-22
<script type="text/javascript">
$(function () {
var intI = 18;
$("div").one("click", function () {
intI++;
$(this).css("font-size", intI + "px");
})
});
</script>这样看的够清楚了吧,哈哈哈哈哈
$(function () {
var intI = 18;
$("div").one("click", function () {
intI++;
$(this).css("font-size", intI + "px");
})
});
</script>这样看的够清楚了吧,哈哈哈哈哈
2016-06-22
<script type="text/javascript">
$(document).ready(function(){
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
</script>
$(document).ready(function(){
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
</script>
2016-06-22