$('#PbtnSubmit').click(function() {
if ($("#PricingEditExceptions input:checkbox:checked").length > 0) {
var chec = $('#PricingEditExceptions input[type=checkbox]:checked');
var PMstrIDs = chec.map(function() {
return $(this).val();
}).get().join(",");
alert(PMstrIDs);
$('#1_exceptiontypes').attr('value', exceptiontypes)
$('#1_PMstrIDs').attr('value', PMstrIDs);
} else {
alert("please select atleast one exception");
return false;
}
});
var checked = $('#PricingEditExceptions input[type=checkbox]:checked');
此代碼在Firefox中返回正確的值,但不在IE8中。有什麼我需要改變?這段代碼有什麼問題?
爲什麼我沒有得到IE8中的所有選中的複選框?
請問有人能幫我嗎?
woohhh ...你的代碼現在真的不一樣了! :/ – Zuul 2010-06-14 20:38:29
如果您不從問題中刪除代碼,這會更容易。 \ *嘆息\ * – Eric 2010-06-14 21:20:41