gpt4 book ai didi

javascript - 我怎样才能让一个按钮做相反的多项事情

转载 作者:行者123 更新时间:2023-12-02 21:38:14 26 4
gpt4 key购买 nike

barsButton.onclick = function xtranslate(){
aside[0].style.transform = "translateX(0px)"
stories.style.marginLeft = "0px";
}

如何单击按钮两次,以便下次将 x 转换为 250px ?

最佳答案

您可以使用变量并使用 Conditional (ternary) operator 更新其值:

var toTranslate = '0px';
barsButton.onclick = function xtranslate(){
aside[0].style.transform = `translateX(${toTranslate})`;
stories.style.marginLeft = "0px";
toTranslate = toTranslate == '0px' ? '250px' : '0px';
}

关于javascript - 我怎样才能让一个按钮做相反的多项事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60438017/

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