html
<button>挨拶</button>
jQuery
$('button').click(function(){
alert('hello');
})
があったとして、jQuery上からクリックイベントを実行(発火)する方法は二通り。
jQuery
$('button').trigger('click');
または、
jQuery
$('button').click();
Go to list of users who liked
More than 5 years have passed since last update.
<button>挨拶</button>
$('button').click(function(){
alert('hello');
})
があったとして、jQuery上からクリックイベントを実行(発火)する方法は二通り。
$('button').trigger('click');
または、
$('button').click();
Register as a new user and use Qiita more conveniently
Go to list of users who liked