Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: onclick メソッドをアクティブにする偽の「クリック」
ユーザーが他の div をクリックしたときの誤クリックをシミュレートしたい。これは可能ですか?
onclick「フェイク クリック」によってDOM オブジェクトのイベント ハンドラーをプログラムで呼び出す場合は、次のようにします。
onclick
$("#myDiv").click( function() { $("someOtherElement").click(); } );
最初の行は、新しい onclick イベント ハンドラを に割り当て<div id="myDiv">ます。その要素がクリックされると<div id="someOtherElement">、それもユーザーによってクリックされたかのように動作します。
<div id="myDiv">
<div id="someOtherElement">