回答
試試這個:
$content = $('#your_cell_id_here').html();
if($content == '')
{
// yes it is empty
}
else
{
// no it is not empty
}
您可以使用CSS選擇器與$
函數獲取細胞的元素的引用,然後使用html
功能,看是否有任何內容。例如,如果該小區有ID爲「foo」:
if ($("#foo").html()) {
// The cell has stuff in it
}
else {
// The cell is empty
}
謝謝。但所有這些只適用於IE而非Firefox。我現在檢查了它。 – Yaswanth 2009-12-22 12:06:20
經過測試,適用於IE7,FF3.5,Chrome3,Safari4和Opera10。測試頁面:http://pastie.org/753004預期輸出:「foo的內容/欄爲空」確保允許空格;你可能想修剪'html'返回的字符串。 – 2009-12-22 12:24:31
你可以CSS類添加到您的table
及其行和列,然後使用jquery selectors得到表項目:
if (!($('#mytable tr.row-i td.column-j').html())) { alert("empty"); }
你什麼意思是空的。
//cell maycontain new lines,spaces,&npsp;,... but no real text or other element
$("cellselector").text().trim()=="";
或
//cell has no child elements at all not even text e.g. <td></td>
$("cellselector:empty")
你可以使用我張貼在這裏
http://www.keithrull.com/2010/06/09/HowToChangeTableCellColorDependingOnItsValueUsingJQuery.aspx
你可以使用這個,如果你已經知道你要檢查
小區ID的trechnique$valueOfCell = $('#yourcellid').html();
或者可以在桌子上的單元迭代
$("#yourtablename tr:not(:first)").each(function() {
//get the value of the table cell located
//in the third column of the current row
var valueOfCell = $(this).find("td:nth-child(3)").html();
//check if its greater than zero
if (valueOfCell == ''){
//place action here
}
else{
//place action here
}
});
- 1. 使用JavaScript檢查HTML表格單元格是否爲空?
- 2. 檢查單元格是否爲空
- 3. PHP - 檢查單元格是否爲空
- 4. 檢查excel單元格是否爲空
- 5. Excel:如何使用VBA檢查單元格是否爲空?
- 6. JQuery檢查表格單元是否爲空
- 7. 如何檢查Excel單元格值是否有空格... excel 2007
- 8. 使用VBA檢查下面的單元格是否爲空
- 9. 如果ELSE在Excel中 - 檢查單元格是否爲空/空
- 10. DataGridView如何檢查單元格是否爲空?
- 11. 如何檢查單元格是否爲空?
- 12. 德爾福網格面板檢查單元格是否爲空
- 13. 檢查ng格中的單元格是否爲空
- 14. 檢查圖像是否爲重用單元格爲空
- 15. 如何檢查單元格是否格式化爲貨幣?
- 16. 檢查excel中的單元格是否爲空或空白
- 17. OSX - 使用多個表格 - 如何檢查單元格是否超出
- 18. 使用單元格引用檢查空白單元格
- 19. 使用OpenPyXl檢查空單元格
- 20. Flex檢查數據網格單元是否爲空
- 21. 檢查一個.csv單元格是否爲空
- 22. SSDT:標量值 - 檢查單元格是否爲空
- 23. 檢查合併的單元格是否爲空
- 24. 整潔地檢查附近的單元格是否爲空
- 25. 檢查數據庫單元格是否爲空
- 26. 檢查是否GridViewRow單元格在Visual Basic中爲空
- 27. 檢查datagridview的單元格中的數據是否爲空
- 28. VBA檢查單元格是否爲空 - 收件人Lastrow
- 29. VSTO c#檢查一個單元格是否爲空
- 30. 如何使用jQuery隱藏空html表格單元格?
相關:http://stackoverflow.com/questions/376081/how-to-get-a-table-cell-value-using-jquery – miku 2009-12-22 11:41:14