我怎样才能编写这个咖啡脚本,这样它就不会刷新我的页面?
这是我的第一个 Coffeescript 函数,无法弄清楚如何让它在用户单击并触发事件后不刷新我的页面:
jQuery ->
$(".answer_link").click ->
$val = $(this).attr 'id'
$id = $val.replace(/answer_link_/, '')
$input = "#new_answer_" + $id
$($input).toggle 'slow'
谢谢!
This is my first Coffeescript function and can't figure out how to get this to not refresh my page after the user clicks and the event is fired:
jQuery ->
$(".answer_link").click ->
$val = $(this).attr 'id'
$id = $val.replace(/answer_link_/, '')
$input = "#new_answer_" + $id
$($input).toggle 'slow'
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这是一个关于 jQuery 或 JavaScript 的问题。
您可以使用
.preventDefault()
来执行此操作:有关 preventDefault 的更多信息。
I think this is a question about
jQuery
orJavaScript
.you can use
.preventDefault()
to do this:more info about preventDefault.
只需在 click 函数末尾添加一个
return false
即可,如下所示:Just add a
return false
at the end of the click function like this :