我希望在pageload上添加一个新的CSS规则,并使用Javascript(或jQuery)在窗口调整大小上修改它。我尝试了以下方法,但它似乎没有起作用:
var w = $(window).width();
var itemWidth = ((w/154)+4).toFixed();
var itemWidthLeft = itemWidth/2;
var itemWidthRight = itemWidth/2;
document.styleSheets[0].insertRule('figure.itemMargin { margin-left: '+itemWidthLeft+'; margin-right: '+itemWidthRight+'; }',0);
我做错了什么?
答案 0 :(得分:3)
您遗失px
。
document.styleSheets[0].insertRule('figure.itemMargin { margin-left: '+itemWidthLeft+'px; margin-right: '+itemWidthRight+'px; }',0);
答案 1 :(得分:0)
你不是在字符串中包含变量,试试这个
document.styleSheets[0].insertRule('figure.itemMargin { margin-left: ' + itemWidthLeft + '; margin-right: ' + itemWidthRight + '; }',0);
答案 2 :(得分:0)
在style
中创建head
元素并将规则附加到其中。
例如
<style type="text/css" id="cssChanges"></style>
然后使用
$("#cssChanges").append('figure.itemMargin { margin-left: ' + itemWidthLeft + 'px; margin-right: ' + itemWidthRight + 'px; }');