anonīms Posted August 12, 2011 Report Share Posted August 12, 2011 // 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) }) Quote Link to comment Share on other sites More sharing options...
indoom Posted August 12, 2011 Report Share Posted August 12, 2011 labāk ieliec alertu ar get linku pirms ajax. Vai vislabāk firebug consolē console.log(Drupal.settings.basePath +'ajax/page'+ $(this).attr('href')); Quote Link to comment Share on other sites More sharing options...
anonīms Posted August 12, 2011 Author Report Share Posted August 12, 2011 Nē, tur tā lieta, ka datus savāc ok. Pa tiešo ejot ar parādi visus json datus, konsolē jau to get ar visu response ar var smuki redzēt, bet vienīgais, kas nenotiek ir f-ja pēc tam. Quote Link to comment Share on other sites More sharing options...
anonīms Posted August 12, 2011 Author Report Share Posted August 12, 2011 Izrādas pārejot no 1.4 uz 1.2 jquery viss strādā. Mistika. Quote Link to comment Share on other sites More sharing options...
draugz Posted August 12, 2011 Report Share Posted August 12, 2011 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. 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.