如果文本框为空,我想使用事件更改文本框的边框颜色。
JS
$(document).ready(function () {
$("#name1").onFocus(function () {
if ($("#name1").val() == "") $(this).css({
"border": "red",
});
$("#name1").LostFocus(function () {
if ($("#name1").val() != "") $(this).css({
"border": "",
});
});
});
});
HTML
<form action="">
<input id="name1" type="textbox"></input>
<input id="name2" type="textbox"></input>
<input id="name3" type="textbox"></input>
<input type="button" value="submit"></input>
</form>
答案 0 :(得分:1)
使用模糊
尝试此操作 $("input[type='textbox']").blur(function () {
var text = $(this).val();
if(text == "")
{
$(this).css('border-color','red');
}
});
答案 1 :(得分:1)
试试这个,
查看实时DEMO
<强> HTML 强>
<form action="">
<input id ="name1" type="textbox"></input>
<input id ="name2" type="textbox"></input>
<input id ="name3" type="textbox"></input>
<input type="button" value="submit"></input>
</form>
<强> CSS 强>
.red {
border-color:red;
}
<强>的jQuery 强>
$(document).ready(function() {
$("input").focusin(function(){
if ($(this).val() == "")
$(this).addClass("red")
});
$("input").focusout(function(){
if ($(this).val() != "")
$(this).removeClass("red")
});
});
答案 2 :(得分:0)
尝试focus
代替onFocus
并使用blur
代替LostFocus
。
$(document).ready(function() {
$("#name1").focus(function(){
if ($("#name1").val() == "")
$(this).css({
"border": "red",
});
$("#name1").blur(function(){
if ($("#name1").val() != "")
$(this).css({
"border": "",
});
});
});
了解详情:http://api.jquery.com/focus/和http://api.jquery.com/blur/
答案 3 :(得分:0)
使用自定义onChange处理程序: FIDDLE
$(function () {
$("#name1").on("change", function () {
if($(this).val()==""){
$(this).css({
"border":"2px solid red"
});
}
else{
$(this).css({
"border":""
});
}
});
});