gpt4 book ai didi

jquery - 如何在 jquery 中不再使用 css 参数

转载 作者:行者123 更新时间:2023-11-28 18:20:20 25 4
gpt4 key购买 nike

这是我们做的css

width: 200px;
height: 100px;
background-color: #f00;

当我们不想再使用 css 时,我们可以只添加一个斜杠或任何 css 不理解但所有其他 css 都可以工作的内容

widt/h: 200px;
height: 100px;
background-color: #f00;

但我想在 jquery 中像 marginLef/t 在 jquery 中那样做,它不再适用于所有其他参数。

示例 jquery

<script>
$(document).ready(function(){
$("button").click(function(){
$("h2").animate({backgroundColor: '#00f', width: '-=150px', marginLef/t: '50px'});
});
});
</script>

最佳答案

不要破坏您的代码,而是使用注释。对于 CSS:

/* width: 200px; this rule is obsolete for now */
height: 100px;
background-color: #f00;

在 Javascript 中:

alert('this line is executed');
// alert('this line is not');
/* removed following line in a multiline comment
alert('also not being executed');
*/

注释可确保值不会作为一个整体进行解析,并且它不会破坏解析器/编译器以及其他功能。

虽然 CSS 标准明确定义格式错误的规则应该被忽略,而其他有效规则仍然适用,但在像 Javascript 这样的编译器语言中,它只会破坏整个执行。

关于jquery - 如何在 jquery 中不再使用 css 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17041563/

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