“Документ на щелчке jQuery” Ответ

jQuery нажимайте функцию

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});
Confused Cobra

Документ на щелчке jQuery

$(document).on("click", ".onClass", function () {
    //your code
    var element = $(this); // to get clicked element
});
Alex Logvin

jQuery на щелчке

$( "p" ).on( "click", function() {
  alert( $( this ).text() );
});
Shadow

на щелчке jQuery

$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});
Tomas Maillo

на щелчке jQuery

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});
Condemned Crayfish

Документ на щелчке jQuery

$(document).on("click","#test-element",function() {});
Long Lapwing

Ответы похожие на “Документ на щелчке jQuery”

Вопросы похожие на “Документ на щелчке jQuery”

Больше похожих ответов на “Документ на щелчке jQuery” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования