标签:|| alert next checked 获取 input ext 提示 style
例如:
var checkedbox = $("input[type=checkbox][name=‘cid‘]:checked")
if (checkedbox.size() == 0) {
alert("提示:请选择要一条要调袋的产品!");
return;
}
var status = checkedbox.parent().parent().nextAll().eq(5).text();
if (status == "待入库" || status == "已出库") {
alert(status + "状态的产品无法调袋!")
return;
}
checkeds 选中获取tbale表格中某一列td标签中的值
标签:|| alert next checked 获取 input ext 提示 style
原文地址:https://www.cnblogs.com/cuiguangpeng/p/10775566.html