单击以触发事件发生(jQuery)

时间:2015-11-13 09:03:52

标签: javascript jquery

所以我有以下js代码:

Content-Type

在这里,当点击jQuery('.first_button').click(function(e) { var get_the_id= jQuery(this).data("custom_id"); var isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ? true : false; if(!isMobile) { // if it is not mobile, the first click needs to trigger this function jQuery('.second_button_' + get_the_id).custom_plugin(); }else{ //something else } }) 时,它会将first_button作为变量并查找custom_id类。问题是第一次点击不会触发主要功能(“custom_plugin”),需要再次点击。

如何编辑它以便第一次点击触发该功能(因此只需要点击一下)?

0 个答案:

没有答案