页面重新加载甚至函数返回false

时间:2013-09-05 04:41:11

标签: javascript html

我在html中有一个按钮

<button class="widget-planner-submit" type="submit" value="Go" onclick="onRedirect('button');" >GO</button>

即使javascript函数返回false,单击Go按钮也会重新加载页面。

1 个答案:

答案 0 :(得分:1)

使用

<button class="widget-planner-submit" type="submit" value="Go" onclick="return onRedirect('button');" >GO</button>