ziedinjsh Posted May 7, 2011 Report Share Posted May 7, 2011 (edited) Labsvakars.. uzdūros problēmai kurai man liekas nevajadzētu būt.. ajax kods kas atrodas header: $ = function($name) { return document.getElementById($name); } function showContent() { $('loading').style.display = 'none'; $('content').style.display = 'block'; } funkciju failā: function start($name){ echo "<div id='loading'><center><img src='misc/loader.gif'></center></div>"; echo "<div id='content'>"; } function stop(){ echo "</div>"; } index failā: start('top'); echo "kkas"; stop(); start('page'); echo "kkas"; stop(); Vajadzētu taču strādāt tam ajax kodam.. jo nesanāk 2 vienādi id vienā lapā! Bet tagad sanāk vienā vietā divi un zemākais visu laiku rāda loading.gif bildi, bet aukšējais visu ielādē kā nākas! Edited May 7, 2011 by ziedinjsh Quote Link to comment Share on other sites More sharing options...
briedis Posted May 7, 2011 Report Share Posted May 7, 2011 Neredzu vispār nevienu ajax izsaukumu. Vai tas ir prātīgi lietot tādu pašu funkcijas nosaukumu kā visiem ir pieņemts jquery? Kāpēc nelieto jquery? Quote Link to comment Share on other sites More sharing options...
ziedinjsh Posted May 7, 2011 Author Report Share Posted May 7, 2011 tapēc,ka uz jquery un tādiem esmu uz jūs un šis ir kods kurš man strādā! :D Quote Link to comment Share on other sites More sharing options...
briedis Posted May 7, 2011 Report Share Posted May 7, 2011 Nav ko ākstīties, sāc apgūt jquery :) Quote Link to comment Share on other sites More sharing options...
daGrevis Posted May 7, 2011 Report Share Posted May 7, 2011 Pretīgi jaukt visu vienā putrā: HTML, CSS, JScript un PHP! Pēē... Quote Link to comment Share on other sites More sharing options...
ziedinjsh Posted May 7, 2011 Author Report Share Posted May 7, 2011 (edited) bet kā var salabot šo? nomainiju arī funkcijas nosaukumu, bet vienalga neiet.. Edited May 7, 2011 by ziedinjsh Quote Link to comment Share on other sites More sharing options...
mad182 Posted May 8, 2011 Report Share Posted May 8, 2011 (edited) function stop(){ echo "</div>"; } KĀPĒC!!!!??? kaut kas tāds ir vajadzīgs? Ja tu gribi slēpt un rādīt vairākus elementus, tiem ir jāpiešķir klasi, nevis ID. Bet man izskatās, ka tur kaut kas galīgi greizi jau pašā idejā, kāpēc tas ir vajadzīgs un kā tas tiek panākts. Edited May 8, 2011 by mad182 Quote Link to comment Share on other sites More sharing options...
ziedinjsh Posted May 8, 2011 Author Report Share Posted May 8, 2011 (edited) nu kā header.php atrodas: <script type="text/javascript"> $ = function($title) { return document.getElementById($title); } function showContent() { $('loading').style.display = 'none'; $('content').style.display = 'block'; } </script> iekš misc/func.php function opendiv($title){ echo "<div id='loading'><center><img src='misc/loader.gif'></center></div>"; echo "<div id='content'>"; } function closediv(){ echo "</div>"; } index.php ir includots gan header.php gan misc/func.php tālāk ir šādi: opendiv('top'); echo "Saturs ko ielādēt 1"; closediv(); opendiv('page'); echo "Saturs ko ielādēt 2"; closediv(); Tā tad, saturs 1 ielādējas, bet saturs 2 rāda tikai loader.gif un neielādējas. Edited May 8, 2011 by ziedinjsh Quote Link to comment Share on other sites More sharing options...
daGrevis Posted May 8, 2011 Report Share Posted May 8, 2011 Ģeniāla ideja! Re kur dažas lietas, ko pievieno... function openSpan() { echo '<span>'; } function closeSpan() { echo '</span>'; } function openAnchor( $anchor ) { echo "<a href=\"{$anchor}\">"; } function closeAnchor() { echo "</a>"; } function openImage( $image, $alt ) { echo "<img src=\"{$image}\" alt=\"{$alt}\"/>"; } function closeImage() { } Quote Link to comment Share on other sites More sharing options...
Nordvind Posted May 9, 2011 Report Share Posted May 9, 2011 Baigā jēga kopēt no kkurienes kodu, ko pats nesaproti! jQuery ir reizēs vieglāks par tīro JS, un dod iespēju realizēt visus iedomājamos efektus DOMā. Ar AJAX šeit vispār neredzu sakaru. Nestrādā tavs kods, tapēc ka div'iem ids tev vienmēr ir vienāds. Vispār, lai novērst šādas kļūdas, der uzlikt vismaz FireBug. Quote Link to comment Share on other sites More sharing options...
Maris-S Posted May 9, 2011 Report Share Posted May 9, 2011 (edited) Papēti iegūto html kodu ko Tu iegūsti pārlūkā. Tev funkcija opendiv($title) vienmēr taisa div elementus ar vienādiem id, gan id="loading", gan id="content", Tu viņus izvadi divas reizes, Tev sanāks divi "loading" un divi "content". Nav saprotams kāpēc Tev vajadzīgs $title, jo viņš funkcijā netiek izmantots. Par jquery nezinu, tas daudz ko atvieglo, bet es personīgi neizmantoju viņu kad vajag sataisīt minimālas javascript lietas. Piemēram, uzskatu ka nav jēgas ielādēt visu jquery, lai vienam divam uz pogas nospiešanas mainītu display. Edited May 9, 2011 by Maris-S Quote Link to comment Share on other sites More sharing options...
daGrevis Posted May 9, 2011 Report Share Posted May 9, 2011 Man liekas, ka tas, ka eksistē PHP funkcija, kas izvada HTML jau ir diezgan liela problēma... Varam sataisīt visu pa Manam veidam... kāds ir vēlamais efekts, ko vēlies panākt (bez nekādas iedziļināšanās programmēšanā)? Quote Link to comment Share on other sites More sharing options...
indoom Posted May 9, 2011 Report Share Posted May 9, 2011 Tā tad, saturs 1 ielādējas, bet saturs 2 rāda tikai loader.gif un neielādējas. <script type="text/javascript"> window.onload = showContent; </script> 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.