gridid = myGrid
檢查電網價值的jQuery
Name Status
aa Open
bb Close
我想查天氣Status
列有Open
狀態已經存在。
如果是,那麼alert("already there ")
我試着像
function CheckDraftStatus() {
var index = $("#myGrid thead tr > *").filter(function() {
return 'Status' == $.trim($(this).text())
}).index();
$('#myGrid tbody tr td:nth-child(' + (index + 1) + ')').text(function (i, text) {
if ($.trim(text) == 'Open') {return true;}
else {return false}
});
}
指正或任何其他代碼嗎?
它的工作,你想* *緊湊和容易*解決方案或它不工作? – DontVoteMeDown
它不工作:( – Neo
什麼是你的HTML? –