gpt4 book ai didi

javascript - 如何更改 jQuery 中属性的值

转载 作者:行者123 更新时间:2023-11-28 16:23:53 24 4
gpt4 key购买 nike

我正在尝试从内联 css 中选择属性“top”和减去 (-200px) 的值。

<article class="stack" style="position: absolute; left: 741px; top: 1000px;">
</article>

我要的是数顶部:1000px - 200px

它应该将文章的移动从 1000px 减少到 800px。

在此先感谢您的帮助,如果问题问得不好,我们深表歉意。

最佳答案

你可以简单地这样做:

let a = $('article.stack').css('top'); // get the Top value
console.log(a);

$('article.stack').css('top',parseInt(a)-200); //updated the Top value

a = $('article.stack').css('top');
console.log(a);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<article class="stack" style="position: absolute; left: 741px; top: 1000px;">
</article>

关于javascript - 如何更改 jQuery 中属性的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47643234/

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