jQuery: How to detect if an element is not clicked?

非 Y 不嫁゛ 提交于 2019-12-03 09:43:07

You can maintain a data property to that element as a click detector.

Example:

<button class="myButton" data-clicked="no">My Button</button>

Here, I set data-clicked=no as initial config.

Within the click event set data-clicked to yes like:

$('.myButton').on('click', function() {
  $(this).data('clicked', 'yes');
});

Now check this data-clicked property like below:

var isClicked = $('.myButton').data('clicked');

if( isClicked == 'yes') {
   // do something
} else {
  // do something else
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!