当我使用我创建的show_reply()和hide_reply()函数时,如何更改脚本以便不刷新页面?
这是我的剧本:
function show_reply($id){
document.getElementById($id).style.display = "initial";
}
function hide_reply($id){
document.getElementById($id).style.display = "none";
}
忘记我正在调用这样的功能
<a href="#" title="Reply" onclick="show_reply('<?php echo $row['id']; ?>')"> Reply</a>
答案 0 :(得分:-1)
工作小提琴:fiddle
您应该阻止该操作转到另一个页面。 // HTML
<a href="#" title="Reply" class="Classhref" onclick="show_reply('<?php echo $row['id']; ?>')"> Reply</a>
//脚本
$('.Classhref').click(function(event){
event.preventDefault();
}