所以我有以下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”),需要再次点击。
如何编辑它以便第一次点击触发该功能(因此只需要点击一下)?