Jump to content
php.lv forumi

$.get problēma.


anonīms

Recommended Posts

// page slider with ajax
jQuery.global_page = '';
Drupal.behaviors.ajaxpage = function(context) {
// alert(basePath);
 $('.links.main-menu a:not(.ajaxpage-processed)', context).addClass('ajaxpage-processed').bind('click', function(){

  if(jQuery.global_page != $(this).attr('href')){
  jQuery.global_page = $(this).attr('href');

 	$.get(Drupal.settings.basePath +'ajax/page'+ $(this).attr('href'), null, pageData);

}
return false;
 });
}
var pageData = function(response) {
 var result = Drupal.parseJson(response);
 $('#popup-container').html(result.data);
 Drupal.attachBehaviors('body');
}

 

kādēļ pēc $.get pieprasījuma nenotiek tālākā funkcija, kgan citā lapā ir praktiski indentisks kods izmantots?

visi dati tiek savākti.

Centos izvadīt alertu arī kā

 

$.get(Drupal.settings.basePath +'ajax/page'+ $(this).attr('href'), function() {

alert(1)

})

Link to comment
Share on other sites

Pirmais, kas iekrita acīs, ka tā funkcija kuru tu pieliec tam get eventam tiek definēta tikai pēc tam. Es gan neesmu drošs ka šinī gadījumā tā ir, bet faktiski tu iedot izsaukt null vai undefined. Labā prakse arī prasa lai katra funkcija ko tu plāno izsaukt būtu definēta pirms izsaukšanas, nevis pēc izsaukšanas.

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