当我检查任何文本框在提供的行中是否有值或者它只检查第一个文本框时,我不断返回一个对象。如果任何文本框有值,我想将一行传递给 chkblock 函数并得到一个真正的返回。
提前感谢您的帮助,罗伊
你可以在这里看到整个事情:http: //jsbin.com/igaror/1/edit
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
</style>
</head>
<body>
<table>
<tr>
<td><input type="checkbox" /><input id='1' class='name' type='hidden' value='test 1'/></td>
<td><input type="text" class="room" value="44"/></td>
<td><input type="text" class="room" /></td>
<td><input type="text" class="room" /></td>
</tr>
<tr>
<td><input type="checkbox" /><input id='1' class='name' type='hidden' value='test 2'/></td>
<td><input type="text" class="room" /></td>
<td><input type="text" class="room" /></td>
<td><input type="text" class="room" /></td>
</tr>
</table>
</body>
</html>
$('.room').change(function() {
var row = $(this).closest("tr");
var block = false; //row.find(":text.room").val() !== "";
var vname = row.find(":input.name").val();
block = chkblock2(row);
alert("name: " + vname + " block:" + block);
if(vname == "test 1"){
$(this).closest("table").find(":input.name").each(function() {
if ($(this).val() == "test 2"){
var row = $(this).closest('tr');
row.find(":text").attr("disabled",block);
row.find(":text").val("");
}
});
$(this).closest("table").find(":input.name").each(function() {
if ($(this).val() == "test 1"){
$(this).closest("tr").find(":text").attr("disabled",false);
//$(this).val('');
}
});
} else if(vname == "test 2"){
$(this).closest("table").find(":input.name").each(function() {
if ($(this).val() == "test 1"){
var row = $(this).closest('tr');
row.find(":text").attr("disabled",block);
row.find(":text").val("");
}
});
$(this).closest("table").find(":input.name").each(function() {
if ($(this).val() == "test 2"){
$(this).closest("tr").find(":text").attr("disabled",false);
//$(this).val('');
}
});
}
});
function chkblock(row){
return row.find("input:text:not(:empty)");
}
function chkblock2(row){
row.find(":input.room").each(function() {
if ($(this).val() !== "" ){
return true;
}
});
return false;
}