Jump to content
php.lv forumi
  • 0

.on() live elementi


hjkl

Question

Netieku galā ar jQuery .on().

Lietoju pluginu, kas <input> elementam pievieno custom eventu "info_altered". Tas nostrādā katru reizi, kā lietotājs izmanto plugina uzģenerēto GUI.

 

Katru reizi, kad lietotājs to dara, es gribu palaist savu funkciju, kas citur lapā uzģenerē html, kas ir, nu, dzīvs, 'live', respektīvi, atbild uz tādu kodu kā:

$('a').click(function(){
   alert('clicked me');
});

Bet tie pievienotie elementi ir, khe, 'beigti', un neatbild. Parasti tādās situācijās lietoju kaut ko līdzīgu:

$('#parent').on('click', '#child', function(){
   //pievienoju 'dzivus' elementus
});

Bet par cik <input> elementam nav nekādu childu, tad nezinu, ko iesākt. Vajadzētu strādāt kā:

$('#input').on('info_altered', '#child', function(){
   //pievienoju 'dzivus' elementus
});
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Pec 'info_altered' eventa pievienot lapai html elementus: 

$('#input').on('info_altered', function(){
   add_html_elements();//pievienoju 'dzivus' elementus
});

Un tiem ir jāvar atbildēt uz klikšķiem:

$('element').click(function(){
   alert('clicked me');
});
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.

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.

Loading...
×
×
  • Create New...