Jump to content
  • 0

JQuery: как сделать обработчик для элемента, создаваемого этим же скриптом?


swetlana
 Share

Question

Есть кнопка. По нажатию на эту кнопку создаётся элемент:


$(document).ready(function(){
$("#a_link").click(function(){
$("body").append('<div id="a_out" />');

}); });

Далее нужно, чтобы по клику на этот элемент выполнялась следующая функция.

Если написать:


$(document).ready(function(){
$("#a_out").click(function(){

}); });

то не сработает ибо на момент чтения браузером этого скрипта такого элемента не существует.

А как сделать правильно?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

А как сделать правильно?

Ох уж эти джекверисты... Пучеглазы, мускулисты...

По идее так должно работать


$(document).ready(function(){
$("#a_link").click(function(){
$("body").append('<div id="a_out" />').click(function(){

});

}); });

  • Like 2
Link to comment
Share on other sites

  • 0

Ох уж эти джекверисты... Пучеглазы, мускулисты...

По идее так должно работать


$(document).ready(function(){
$("#a_link").click(function(){
$("body").append('<div id="a_out" />').click(function(){

});

}); });

А точнее


$(function(){
$("#a_link").click(function(){
$("body").append('<div id="a_out" />').live('click',function(){

});
});
}

надо использовать live т.к DOM узел создается динамически. jquery.live

  • Like 2
Link to comment
Share on other sites

  • 0

а точнее, почти то, что нужно.

Правильнее так:


$(function(){
$("#a_link").click(function(){
$("body").append('<div id="a_out" />');
$("#a_out").live('click',function(){

});
});
}

а то, если $("body").append().live(), то обработчик на body и вешается.

Link to comment
Share on other sites

  • 0

а точнее, почти то, что нужно.

Правильнее так:


$(function(){
$("#a_link").click(function(){
$("body").append('<div id="a_out" />');
$("#a_out").live('click',function(){

});
});
}

а то, если $("body").append().live(), то обработчик на body и вешается.

Аа! Ну да, извиняюсь - пропустил ошибочку))

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy