gpt4 book ai didi

jquery - 如何在单击时删除按钮的样式内容

转载 作者:太空宇宙 更新时间:2023-11-04 13:56:43 25 4
gpt4 key购买 nike

好的,所以我正在尝试做到这一点,以便无论何时单击此按钮,它都会删除其中包含的样式内容。

<button id="margin" onclick="save()" class="submit" type="submit">

<style>
.enable {
margin-bottom:420px;
}
</style>

</button>

最佳答案

这将在单击时删除按钮 #marginHTML 内容。

$("#margin").on("click", function(){
$(this).html('');
});

如果您尝试从 .enable 元素中删除 CSS margin-bottom 属性,请使用:

$("#margin").on("click", function(){
$(".enable").css("margin-bottom", "0px");
});

将上面代码中的0px替换为.enable的原始ma​​rgin bottom

关于jquery - 如何在单击时删除按钮的样式内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21806660/

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