Sangsom Posted June 20, 2013 Report Share Posted June 20, 2013 Sveiki, saskāros ar diezgan interesantu problēmu, tieši ar IE 10 un vēcāku versiju browseriem, pārējos viss protams ka ok. Tātad doma ir sekojoša ir izveidots links kur tiek padots id parametrs, nospiežot uz linku iekš div tiek ielādēta lapa ar jQuery UI dialog palīdzību, tajā lapā id ir nepieciešams... Links: echo "<td><a href='sbmevent.php?id=".$row['event_id']."' class='edit'>Edit</a></td>"; div kurā tiek ielādēta lapa: <div id="modal_window"></div> sbmevent.php: if (isset($_GET) && !empty($_GET['id'])) { $event_id = $_GET['id']; $q = mysql_query('SELECT * FROM `'.TABLE_PREFIX.'events` WHERE `event_id` = '.$event_id); if ($q) { $row = mysql_fetch_assoc($q); ?> <form action="" method="post"> <table> <tr> <td><strong>Title</strong></td> <td><?php echo $row['title']; ?></td> </tr> <tr> <td><strong>Study Nr.</strong></td> <td><?php echo "xxx"; ?></td> </tr> <tr> <td><strong>Centre Nr.</strong></td> <td><?php echo $row['centre']; ?></td> </tr> <tr> <td><strong>Doctor</strong></td> <td><?php echo $row['doctor']; ?></td> </tr> <tr> <td><strong>Category</strong></td> <td><?php echo "xxx"; ?></td> </tr> <tr> <td><strong>Venue/Location</strong></td> <td><?php echo $row['city_id']; ?></td> </tr> <tr> <td><strong>Contact/Sponsor</strong></td> <td><?php echo $row['sponsor']; ?></td> </tr> </table> </form> <?php } } un jQuery: /* Open page in modal dialog */ var dlg=$('#modal_window').dialog({ title: 'Submit event report', resizable: true, autoOpen: false, modal: true, hide: 'fade', width: 450, height: 275, open: function() { jQuery('.ui-widget-overlay').bind('click', function() { jQuery('#modal_window').dialog('close'); }); } }); $('.edit').click(function(e) { e.preventDefault(); var href = $(this).attr('href'); dlg.load(href, function() { dlg.dialog('open'); }); }); Chrome un Firefox strādā kā vajag, taču uz IE šis logs tiek atvērts un parādīts 3 variantos: 1. Te nez kāpēc tiek tikai izvadīts padotais id no linka, kautgan koda tas nekur netiek darīts 2. Te tiek parādīts, viss kā paredzēts 3. Te vispār nekas netiek parādīts Uz ģenerētiem vairākiem linkiem, rezultāts uz katra linka ir savādāks... Nav ne jausmas vispār kas notiek.. Varbūt, kāds gudrāks būs. Paldies! Quote Link to comment Share on other sites More sharing options...
indoom Posted June 20, 2013 Report Share Posted June 20, 2013 Uzspied IE F12 un skaties kas notiekas konsolē un citur. Vai ir errori utt. Pamēģini izslēgt/iztīrīt cachi. Quote Link to comment Share on other sites More sharing options...
Sangsom Posted June 20, 2013 Author Report Share Posted June 20, 2013 Jā paldies, bija kkāds errors no cita javascript faila, noņēmu, viss ok tagad.. Paldies, panika beidzās )) 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.