我有這樣的HTML:查找元素
<div class="section project-billing funding-type" style="display: none;" ;>
...
</div>
我想選擇這個元素,我想同樣的jQuery中:
$("div[class='section project-billing funding-type']")
其唯一
返回[]
不是元素。爲什麼?
我在哪裏犯錯?這是隱藏的事情嗎?
我有這樣的HTML:查找元素
<div class="section project-billing funding-type" style="display: none;" ;>
...
</div>
我想選擇這個元素,我想同樣的jQuery中:
$("div[class='section project-billing funding-type']")
其唯一
返回[]
不是元素。爲什麼?
我在哪裏犯錯?這是隱藏的事情嗎?
使用類選擇的,而不是使用屬性等於選擇器
$("div.section.project-billing.funding-type")
使用CSS() jQuery中。
var checkHidden = $("div.section.project-billing.funding-type").css('display');
alert(checkHidden); // returns 'none' or 'block'
或
use is() in jquery.
$("div.section.project-billing.funding-type").is(":hidden"); // return true or false
你確定'$'是指jQuery嗎? –