以下不起作用:
function doRestyle(div) {
jQuery(div).css({
"margin-top": addableMargin + "px",
"margin-bottom": addableMargin + "px",
});
}
但是,这有效:
function doRestyle(div) {
jQuery('#idName').css({
"margin-top": addableMargin + "px",
"margin-bottom": addableMargin + "px",
});
}
有什么解释吗?非常感谢 :)