Jquery yük fonksiyonu

2 Cevap php

Jquery nispeten yeni ve aşağıda kod işe yaramaz neden bilmek istiyorum. Ben dışarıda sitemde değil üzerinde bulunan bir dosyadan içeriğine erişmek için çalışıyorum. Ben jquery lib google dan yükleme ve siteme değil çünkü mi? Ben IE tarayıcısında olsun hata mesajı "Erişim engellendi" dir. Ben aynı sunucu ve hatta aynı klasördeki bir dosyayı yüklemeye çalışıyorum eğer erişim engellendi neden kafam karıştı.

<html> 
<head>
<script type="text/javascript" language="JavaScript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" language="JavaScript">
$(document).ready(function(){

 $("#response").load("http://www.mydomain.com/loadme.php?route=links/getlinks&path=2");
});
</script>
</head>
<body>
<div id="response" style="border: 1px solid #000;height:500px;">&nbsp;</div>
</body>
</html>

biri bana yardım edin.

teşekkürler

2 Cevap

jQuery Kod

$("#aboutme").click(function(){
    $("#response").load("/loadme.php?route=aboutme&path=2");
});

Html code changed href ="javascript:void(0)" to "#" . The problem in using this "#" is it will go to the top of the page each time when I click on a link. I removed href=# and it works fine but not sure if its ok not to have the href

<li>
    <a id="aboutme" href="javascript:void(0)">
        <span class="showcase-text">About Me</span>
    </a>
</li>

Eğer çalışırsanız ne olur

$.get('/loadme.php?route=links/getlinks&path=2', function(data) {
  $('#response').html(data);
});

yapabilirsiniz azından

alert(data)

bu sana hata ayıklama yardımcı olur ve görmek.