使用按钮传递URL参数

时间:2014-10-23 15:07:04

标签: javascript html button

我在使用参数时如何使用onclick功能,或者在使用锚链接之前有什么其他选择,但是现在因为我将其更改为输入类型按钮,而不仅仅是按钮和使用锚链接,它不会工作点击但不重定向。

这是我按钮的一个例子

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 个答案:

答案 0 :(得分:2)

<强> 1)。逸出即可。你需要逃避这一部分:

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

2)。按钮样式。还

  

之前我使用的锚链接有效,但现在我将其更改为输入类型按钮

你仍然可以使用链接但是看起来像具有相同引导类的按钮

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

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

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