“pemicu jQuery” Kode Jawaban

Tombol Pemicu Klik JQuery

$("input").trigger("click");
Adventurous Alligator

pemicu jQuery

$( "#foo" ).on( "click", function() {
  alert( $( this ).text() );
});
$( "#foo" ).trigger( "click" );

$( "#foo" ).on( "custom", function( event, param1, param2 ) {
  alert( param1 + "\n" + param2 );
});
$( "#foo").trigger( "custom", [ "Custom", "Event" ] );
Sal-versij

Parameter Kirim Pemicu



$('body').trigger('this_works', [{data: [1, 2, 3]}, 'something']);

$('body').on('this_works', function (event, json, string) {
  // parameter is stocked in json.data here.
  console.log(event, json, string);
});
Graceful Guanaco

pemicu jQuery

$("a#mylink").trigger("click"); // triggers event on an element
BlueMoon

jq klik dengan data pemicu beban

$( "#foo" ).trigger( "click" );
Lively Louse

Jawaban yang mirip dengan “pemicu jQuery”

Pertanyaan yang mirip dengan “pemicu jQuery”

Lebih banyak jawaban terkait untuk “pemicu jQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya