ezis Posted December 24, 2009 Report Share Posted December 24, 2009 haiz, priecīgus svētkus visiem! nemāku precīzi paskaidrot, bet nu centīšos.. Lai palaistu popup'u es izmantoju onClick = "Show_Popup()" un tad jQueryizdara visu ko vajag ar jau atzīmētām div klasēm un tās ir: popup, window.. funkcijas: function Show_Popup() { $('#popup').fadeIn('fast'); $('#window').fadeIn('fast'); } function Close_Popup() { $('#popup').fadeOut('fast'); $('#window').fadeOut('fast'); } un problēma ir tur, ka vēlos piemēram iekš tā Show_Popup( 'noradit klasi' ), lai piemēram show_popup funkcija feidotu ar norādīto klasi... bet kā to izdarīt? eh, ceru, ka sapratāt ko vēlos pateikt... Quote Link to comment Share on other sites More sharing options...
rATRIJS Posted December 24, 2009 Report Share Posted December 24, 2009 Tu domā tā? function show_popup(selector) { $(selector).fadeIn('fast'); } show_popup('.my_class'); Quote Link to comment Share on other sites More sharing options...
ezis Posted December 24, 2009 Author Report Share Posted December 24, 2009 (edited) hah tomēr izdevās pēc tava piemēra! :) paldies! piparkūka Tev. nebiju iedomājies par to punktiņu.. ^^ Edited December 24, 2009 by ezis Quote Link to comment Share on other sites More sharing options...
rATRIJS Posted December 24, 2009 Report Share Posted December 24, 2009 Turpmākai zināšanai: . priekšā apzīmē class, piemēram: <a class="link" href="#">Links</a> == $(".link") # priekšā apzīmē id, piemēram: <a id="link" href="#">Links</a> == $("#link") ja nekas nav priekšā, tad tas apzīmē tagu, piemēram: <a href="#">Links</a> == $("a") Un to visu, protams, var kombinēt, piemēram: <a id="link" href="#">Links</a> == $("a#link") Par to visu vairāk var palasīties šeit: http://docs.jquery.com/Selectors Quote Link to comment Share on other sites More sharing options...
ezis Posted December 24, 2009 Author Report Share Posted December 24, 2009 mhm, noderēs.. paldies :) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.