如何查看是否单击同一元素两次? jQuery
如何检测用户是否点击同一个 div?
我尝试过这个但没有成功:
_oldthis = null;
var _this = $(this);
if(_oldthis == _this) {
alert('You clicked this last');
}
_oldthis = _this;
How can you detect if the user is clicking the same div?
I've tried this with no success:
_oldthis = null;
var _this = $(this);
if(_oldthis == _this) {
alert('You clicked this last');
}
_oldthis = _this;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法比较 jQuery 对象,但可以比较它们包含的 DOM 对象。试试这个:
You can't compare jQuery objects, but you can compare the DOM objects they contain. Try this:
你可以试试这个,
});
You may try this,
});