請問能在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)';