jQuery - 使用 id 添加/删除类时组合多个单击功能
我确信一定有一种更优雅(并且更少重复!)的方法来做到这一点。 有没有办法将以下功能结合起来?
$('#one').click(function() {
$('#container').removeClass();
$('#container').addClass('one');return false;});
$('#two').click(function() {
$('#container').removeClass();
$('#container').addClass('two'); return false;});
$('#three').click(function() {
$('#container').removeClass();
$('#container').addClass('three'); return false; });
...等等等等...
I'm sure there must be a more elegant (and less repetitive!) way of doing this.
Is there a way to combine the following functions?
$('#one').click(function() {
$('#container').removeClass();
$('#container').addClass('one');return false;});
$('#two').click(function() {
$('#container').removeClass();
$('#container').addClass('two'); return false;});
$('#three').click(function() {
$('#container').removeClass();
$('#container').addClass('three'); return false; });
...and so on etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以输入
You can type