Şu anda bir php dosyası yürütme var:
<a href="test.php?foo=boo">test</a>
Ben oldukça yeni bir sayfa yüklemek olmazdı ve onClick yok.
Herkes bunu yapmak için basit bir yol biliyor mu?
Ben önerilen ajax dahil olmak üzere, daha eksiksiz bir örnek eklendi. Ben hala sorun olsa çalışmak için alıyorum yaşıyorum.
<script type="text/javascript">
$('li').click(function() {
$.ajax({ type: "GET", url: "test.php", data: { foo: 'boo' }, success: function(data){
// use this if you want to process the returned data
alert('complete, returned:' + data);
}});
});
</script>
</head>
<body>
<div id="header">
<h1>Title</h1>
</div>
<ul>
<li><a href="#">Test</a></li>
</ul>
</body>
</html>