我在运行时生成了几个框,我想确认所有框是否都包含文本“Empty”,那么用户应该无法继续。但是,即使单个 Box 包含正确的 box 值(而不是 Empty),那么用户应该能够继续。
请在下面找到我的代码:
HTML
<div>
<div class="bin-area empty floatLeft" style="width:242px; height:130px; ">
<label for="9">
<div class="bin" data-binid="0" data-cols="0" data-rows="0">
<div class="number">S9</div>
<input class="floatLeft styled" id="9" name="checkbox9" type="checkbox" />
<label for="9"><span class="floatLeft marginLeft40">Empty</span>
</label>
<div class="type"></div>
<div class="description">Storage</div>
</div>
</label>
</div>
<div class="bin-area empty floatLeft" style="width:242px; height:130px; ">
<label for="9">
<div class="bin" data-binid="0" data-cols="0" data-rows="0">
<div class="number">S9</div>
<input class="floatLeft styled" id="9" name="checkbox9" type="checkbox" />
<label for="9"><span class="floatLeft marginLeft40">Empty</span>
</label>
<div class="type"></div>
<div class="description">Storage</div>
</div>
</label>
</div>
<div class="bin-area" style=" width:242px; height:130px; ">
<label for="8">
<div class="bin" data-binid="5" data-cols="9" data-rows="5">
<div class="number">S8</div>
<input class="floatLeft styled" id="8" name="checkbox8" type="checkbox" />
<div class="type">9x5 Storage Bin</div>
<div class="description">Est. Capacity: 121 pkgs</div>
</div>
</label>
</div>
</div>
<div style="clear:both"></div>
<div role="button" style="margin-top:20px">
<input type="button" id="stepAutomap" value="Automap" class="active" />
<input type="button" id="stepAutomapBack" value="Back" class="active marginLeft50" />
<input type="button" id="stepAutomapConfirm" value="Confirm & Proceed" class="marginLeft10" />
</div>
这是我的 HTML 结构...通过搜索一些现有的帖子,我尝试使用 jQuery 创建一些 IF 逻辑:
我试过这个选项:
$(document).ready(function () {
$('.bin-area').each(function () {
if ($(this).text() == 'Empty') {
alert("Empty");
}
});
});
而这个选项:
$(document).ready(function () {
if ($("span.floatLeft").contains("Empty")) {
alert("Empty");
}
});
但是没有任何效果!
我还创建了一个小提琴来参考或尝试!
请参考小提琴:http: //jsfiddle.net/aasthatuteja/xJtAV/
如果您需要任何其他信息,请告诉我。
请建议!