This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我在 Javascript 中有这段代码
// when I click on any #type_import_block, remove class "active" from all id that contains "ver_"
$("[id*=_import_block]").mousedown(function(){
$("[id*=ver_]").removeClass("active");
});