我需要在按钮单击功能期间在同一页面中打开一个新的html页面。我已经尝试过这段代码,但它不能正常工作。这里的错误是什么.Help,提前谢谢
我的按钮
<input type="submit" name="login" id="ok" value="OK" onclick="viewgraph()"/>
我的javascript
function viewgraph()
{
alert("My First Jquery Test");
// location.href('');
window.location.href="graph.html";
}
答案 0 :(得分:0)
答案 1 :(得分:-1)
它不起作用,因为在重定向之前你写了警报,只需删除警报功能