<input type="submit" name="提交" onclick="return check();" />
在引用的js代码中进行判断,如果不希望刷新页面或跳转则返回false,否则不做处理或返回true:
function check(){
if(a > b){
alert("a>b");
return false;
}else{
alert("a<=b");
document.getElementById("points-actions-form").action = "/points_insert";//接下来要跳转的页面
}
}