1. 程式人生 > >如何將html5富文字中的px換算成rem

如何將html5富文字中的px換算成rem

   將content文字中的px用正則替換成rem

   content = content.replace(/(\d+)px/g, function(s, t) {

s = s.replace('px', '');
var value = parseInt(s) * 0.0083;//   此處 1rem =120px
return value + "rem";
});