0
我想檢查一個div是否爲空。空div驗證問題
HTML
<div id="check"> </div>
腳本
$(document).ready(function() {
var $tr = $('#check');
if ($tr.text())
{
alert("success");
}
else
{
alert("fail");
}
});
問題是空的空間也正在考慮爲文本。只有在div內存在內容時,這應該是成功的。
你能幫我執行這個嗎?
謝謝!