.bind("focus", function () {
$("div").html("请输入您的姓名!");
})
$("input").bind("blur", function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
});
$("div").html("请输入您的姓名!");
})
$("input").bind("blur", function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
});
2015-06-16
$("body *").attr("disabled", "true")
2015-06-16
$("#html").html("$content");获取元素的html内容包括代码格式
$("#text").text("$content");获取元素的文本内容,不包含html的格式代码
$("#text").text("$content");获取元素的文本内容,不包含html的格式代码
2015-06-15