jQuery - 如果元素有类,请执行此操作
2022-08-30 04:05:34
我需要一个jQuery脚本,它将查看任何元素是否具有特定的类,并执行诸如更改位置之类的操作。
这是办法,但我认为这行不通。
$("a.contact").toggle(function() {
$("#contact").animate({
right: '0'
}, 2000);
if ($("#about").hasClass("opened")) {
$("#about").animate({
right: -700 + "px"
}, 2000);
}
}, function() {
$("#contact").animate({
right: -700 + "px"
}, 2000);
});