gpt4 book ai didi

javascript - 使用按钮传递 URL 参数

转载 作者:行者123 更新时间:2023-11-30 17:13:29 26 4
gpt4 key购买 nike

我如何在使用参数时使用 onclick 函数,或者是否有任何其他替代方法,在我使用有效的 anchor 链接之前,但现在因为我将其更改为输入类型按钮,而不仅仅是按钮并使用 anchor 链接,它不会它点击但不重定向。

这是我的按钮的例子

echo "<input type='button' class='btn btn-success' onclick='window.location='../../includes/userordersummary.php?orderid=".$row['orderid']."&serial=".$row['serial']."'' value='View Order'>";

请注意,我正在使用 echo。

最佳答案

1).逃跑。你需要转义这部分:

onclick='window.location=\'../../include .... "\'' value='View Order'>";
^--- here ^-- and here

2).按钮样式。还有

before i was using anchor links which works but now since i changed it to input type button

你仍然可以使用链接,但让它们看起来像具有相同 Bootstrap 类的按钮

<a class="btn btn-success">...</a>

3).确认。如果你想在重定向之前添加确认,你可以使用 confirm 对话框:

<a onclick="return confirm('Are you sure?')" href="...">click</a>

关于javascript - 使用按钮传递 URL 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26531242/

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