Jump to content
php.lv forumi

jQuery funkcija ielādētā lapā


ziedinjsh

Recommended Posts

Labdien!

 

Man tāds jautājums:

index.html failā ir inklūdoti js faili. ar jQuery .get funkciju es iegūstu lapas saturu

jQuery.get('php/check_session.php', function(data){
		jQuery('#wrap').html('uzgaidi..');
		
			if(data=='error'){
				jQuery.get('front.html', function(data){
					data = '"' + data + '"';
					jQuery('#wrap').html(data);
				});
			}else if(data=='ok'){
				jQuery.get('audio.html', function(data){
					data = '"' + data + '"';
					jQuery('#wrap').html(data);
				});
			}
	});

viss ir labi, bet ir viena lieta ko es nevaru izdomāt. Piemēram: front.html ir trigeris "enter" bet uzspiežot uz viņu nekas nenotiekas. Saprotu to ka pašā html saturā patiesībā tā front.html saturs nav (source code paskatoties nav) tapēc nenotiek attiecīgā funkcija 

jQuery('.enter').live('click', function(){
       alert(1);
});	

Kā var panākt lai šādā veida varētu palaist citas funkcijas kas ir ar jquery iegūts saturs?

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
Reply to this topic...

×   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...