在Firefox下工作,但斷裂處IE7 & 8:jQuery的CSS選擇器在IE
$("#my-first-div, #my-second-div").hide();
,所以我必須這樣做:
$("#my-first-div").hide();
$("#my-second-div").hide();
這是正常的嗎?
編輯:好吧,我的實際現實生活中的代碼是這樣的:
$("#charges-gsm,#charges-gsm-faq,#charges-gsm-prices").html(html);
,我的錯誤是這樣
(IE8): Message: 'nodeName' is null or not an object
Line: 19 Char: 150 Code: 0
URI: http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js
這適用於我,在IE7和火狐 – Nico 2008-10-09 12:08:37