我的代码如下<input type="submit" value="提交">
<input type="reset" value="清除">
<input type="button" value='再来一次' class="nishi">
我想的是再来一次的按钮能够进行一个连接。生成了以后我能进行跳转页面。求大神代码。
function fnGoto(url) { //window.location.assign("test2.html"); window.location.assign(url); }
<input type="button" value="" class="nishi" onclick="fnGoto('other.html')" />
定义一个跳转函数,然后在按钮上监听一个click事件,调用即可