gpt4 book ai didi

javascript - 添加确认 : "Sure?" to f. 提交

转载 作者:数据小太阳 更新时间:2023-10-29 03:50:41 27 4
gpt4 key购买 nike

我有一个带有 submit_tag 的表单。

我既要设置内容值,又要有一个确认意图的 js 弹出窗口。

我试过了 the suggestion in this answerwhat the docs describe .

以下都不会调用确认对话框,但它会调用 link_to 标记。我做错了什么?

f.submit "Do this", data: {confirm: 'Are you sure?'}  
f.submit "Do this", confirm: 'Are you sure?'
f.submit confirm: 'Are you sure?'

最佳答案

将此 onsubmit 函数添加到您的表单助手

<%= form_for(...  , html: {:onsubmit => "return confirm('Are you sure?');" }) do |f| %>

如果你有 jQuery 并且想无障碍地做它,你可以在文档内部准备就绪

$('#my-form').submit(function() {
return confirm('Are you sure?');
})

关于javascript - 添加确认 : "Sure?" to f. 提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21179761/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com