我使用了onclick函数来检查值。但它没有返回javascript函数。
<button type="submit" id="submit_product" onclick="return check()" class="btn btn-default">Add Product</button>
我试着提醒这样的测试
<script type="text/javascript">
function check()
{
alert("Hello");
return false;
}
</script>
但它始终在不返回函数的情况下提交表单
答案 0 :(得分:0)
只需使用check()
,而不是return check()
答案 1 :(得分:0)
尝试使用以下声明:
<button type="submit" id="submit_product" onclick="check()" class="btn btn-default">Add Product</button>
只需让您的按钮在点击事件中执行check()
功能而不是return check()
。