gpt4 book ai didi

javascript - 如何使用 <script> 函数的结果并将其分配给 html 中的样式 [用于顶部和左侧定位]

转载 作者:行者123 更新时间:2023-11-30 14:04:11 24 4
gpt4 key购买 nike

由于 CSS 无法处理正弦或余弦计算,我使用 Math.sinMath.cos<script> 里面我的 HTML 中的元素。我正在尝试使用结果来定位 lefttop .似乎没有一个简单的解决方案。我下面的代码有效,但我无法使用样式元素中的结果来定位 lefttop .

<p id="GetHeight"></p>
<script>
function myCosFunction(b, angle) {
return Math.cos(angle*Math.PI / 180)*b;
}
document.getElementById("GetHeight").innerHTML = myCosFunction(240, 18);
</script>

最佳答案

你可以像那样使用定位

GetHeight id 中应用 left CSS

document.getElementById("GetHeight").style.left = myCosFunction(240, 18);

top 相同

document.getElementById("GetHeight").style.top = myCosFunction(240, 18);

关于javascript - 如何使用 &lt;script&gt; 函数的结果并将其分配给 html 中的样式 [用于顶部和左侧定位],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55767288/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com