在我的代码中,我使用了一个名为updateLogButton
显示/隐藏 div 的链接按钮。因为每次点击的焦点移动到页面的开头时,我都会使用链接按钮。如何停止这种默认行为?
jQuery片段:
$('#updateLogText').hide();
$('#updateLogButton').click(function() {
if ($('#updateLogText').is(':visible')){
//hide div if content is visible
$('#updateLogText').fadeOut();
}else{
$('#updateLogText').fadeIn();
}
});
HTML 代码:
<tr>
<td><a href="#" id="updateLogButton">Update Log</a></td>
</tr>
<tr>
<td colspan="3" >
<div id="updateLogText" style="width:100%;">
<?php echo $data['updates']; ?>
</div>
</td>
</tr>
编辑: 我的意思的例子:http: //jsfiddle.net/cF4Bb/7/