<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
var $html = "<span class='red' title='hi'>我是土豪</span>";
$("span").replaceAll("$html");
/*这样会崩溃*/
把var $html="3333";这里的span撤掉,也要出问题,嘎嘎嘎嘎......
$("span").replaceAll("$html");
/*这样会崩溃*/
把var $html="3333";这里的span撤掉,也要出问题,嘎嘎嘎嘎......
已采纳回答 / JuN蒲厷英
data:{num:$("#txtNumber").val()}这句不能加到ajaxSetup,因为你要测得数字应该是每次请求的时候都要取一下当前最新的值是多少。把它放在配置里面每次取得不都一样吗(我猜想应该是0吧)。如果这是你给的脚本里面全部代码的话,那么你的代码里面的"})"缺少,使得代码无法执行。
2016-06-22