我必須將display: none;
更改爲display: block
。我有麻煩,我無法得到它的工作..更改HTML中的CSS
我要改變這一點:
.colorbox #content,.colorbox #nav,.colorbox #header,
.colorbox #service,.colorbox #footer,
.colorbox #disclaimer{display:none}
與jQuery的display: block
。
其實我只能改變它在ID #footer
。
我試着用:
$('.colorbox #content,.colorbox #nav,.colorbox #header, .colorbox #service,.colorbox #footer, .colorbox #disclaimer').css('style', 'display: block !important');
或:
$('.colorbox #content,.colorbox #nav,.colorbox #header,.colorbox #service,
.colorbox #footer,.colorbox #disclaimer').css("display", "block !important");
或:
$('#footer').css("display", "block !important");
我實際加載從外部網站CSS文件。( HTML也)是否有可能,我不能使用單個JQuery方法訪問此文件來更改它們的值?
我該怎麼做?
$('#footer')。hide();爲什麼不jQuery? – imGaurav
你是什麼意思爲什麼不是JQuery?我試着用JQuery ..大聲笑 – JCoding
基本上,內聯樣式將比ID選擇器更具優先權。所以你的代碼也應該可以工作。我不確定你在破解陶器方面做了什麼來使這段代碼無法正常工作。請參考這個樣品小提琴。 http://jsfiddle.net/hxwx2g97/它也和你的情況一樣。 –