我是 jQuery 的新手,只是想知道是否有一种方法可以检测页面加载时是否提交了表单,如果是,则解析一些代码。
我有:
<form action="/login/register" method="post">
<input type="text" value="Username" name="regName"/>
<input type="password" value="Password" name="regPass"/>
<input type="submit" value="Register"/>
</form>
和:
<?php
if (isset($_POST['regName']))
{
//check inputs and add account
}
?>
但我想知道是否可以检查表单是否已通过 jQuery 提交?
谢谢。