内容简介:翻译自:https://stackoverflow.com/questions/976753/jquery-click-brings-me-to-top-of-page-but-i-want-to-stay-where-i-am
我有一个简单的点击和显示,点击和隐藏按钮,但当我点击它时,页面锚定在页面的顶部.反正有没有阻止这个?那么当我点击按钮时,我会在浏览器中停留在同一个地方?
我的代码是……
$('#reportThis').hide(); $('#flagThis').click(function () { $('#reportThis').show("slow"); }); $('#submitFlag').click(function () { $('#reportThis').hide("slow"); });
试试这个:
$('#reportThis').hide(); $('#flagThis').click(function (evt) { $('#reportThis').show("slow"); evt.preventDefault(); }); $('#submitFlag').click(function (evt) { $('#reportThis').hide("slow"); evt.preventDefault(); });
翻译自:https://stackoverflow.com/questions/976753/jquery-click-brings-me-to-top-of-page-but-i-want-to-stay-where-i-am
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 勿让你的调用栈原地爆炸
- 如何在Kubernetes中实现容器原地升级 原 荐
- 小程序系列(一)——自定义顶部导航
- ios – UITableView在顶部获得了空白[封闭]
- iphone – 顶部和底部透明渐变的UITableView
- iOS 去除 Webview 键盘顶部工具栏
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Head First HTML and CSS
Elisabeth Robson、Eric Freeman / O'Reilly Media / 2012-9-8 / USD 39.99
Tired of reading HTML books that only make sense after you're an expert? Then it's about time you picked up Head First HTML and really learned HTML. You want to learn HTML so you can finally create th......一起来看看 《Head First HTML and CSS》 这本书的介绍吧!