“связывать jQuery” Ответ

jQuery Bind Click

$( "#foo" ).bind( "click", function() {
  alert( "User clicked on 'foo.'" );
});
Sticky Pingu

связывать jQuery

$(document).ready(function() {              // attach a handler to an event for the elements        
$("#demo").bind('blur', function(e) {
	//dom event fired
});
});
BlueMoon

связывать jQuery

/* As of jQuery 3.0, .bind() has been deprecated. 
It was superseded by the .on() method, as presented in the exemple below */

$("#foo").on("click", function(){
	alert("User click on foo");
});
WKShaker

Ответы похожие на “связывать jQuery”

Вопросы похожие на “связывать jQuery”

Больше похожих ответов на “связывать jQuery” по JavaScript

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

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