这是我们做的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>