请问能在setAttribute设置属性时使用calc()吗?
<svg id='svg' xmlns="http://www.w3.org/2000/svg" width="1122" height="800"></svg>
<script>
document.getElementById('svg').setAttribute('height','calc(100vw * 0.5)')
</script>
这样是当成字符串设置了。
某草草2017-05-19 10:39:19
设置样式的话,可以通过:
document.getElementById('svg').style.height = 'calc(100vw * 0.5)';