基本上我有2个输入:
<input type="text" style="height: 30px;" class="input-xlarge" placeholder="Username" name="username" id="username" required><br /><br />
<input type="password" style="height: 30px;" class="input-xlarge" placeholder="Password" name="password" id="password" required><br /><br />
基本上,
我想检查这两个输入中的值,并将它们检查为所述值(稍后检查到数据库,但现在用于检查目的),然后淡入新页面..
我该怎么做呢?
我开始了..:
$(function() {
$("#submit").click(function() {
//do check
});
});