我需要在点击时不刷新网页,但它应该传递该链接的ID。
<?php echo "<a href='http://localhost/ss/index.php?albumid={$id}#photo'><img src=http://localhost/ss/admin/html/".$p['path']." class='img-responsive' alt='' data-toggle='modal' data-target='.bs-example-modal-lg1'></a>";
<?php if(isset($_GET['albumid'])) $mid = $_GET['albumid']; ?>
我尝试过ajax,但它没有用。 可能吗?你能帮我吗?
答案 0 :(得分:0)
可以传递id,然后进行ajax调用,以避免页面刷新。
以下是代码,如何传递id并使用jQuery进行ajax调用
<div id='link1'><a href='yourfilename.php?id=1'>abc</a></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#link1").click(function(){
$.ajax({url:"abc.php",success:function(result){
//Code after the success of ajax call
}});
});
});
</script>
它一定会帮助你亲爱的