问候,
我有以下 jquery 移动页面:
<div data-role="content">
<center>
<img src="./images/logo320.png" />
</center>
<br><br>
<form method="POST" action="./ajax/login.php">
<label for="login_unameLabel">Username:</label><br>
<input type="text" name="login_uname" id="login_uname" /><br>
<label for="login_pwordLabel">Password:</label><br>
<input type="password" name="login_pword" id="login_pword" /><br>
<button id="login_submit" type="submit" data-theme="a">Submit</button>
</form>
</div>
./ajax/login.php 返回“OK”或“NOK”。如何在我的页面中捕获此结果?
我在 Firebug 中不断收到以下错误:
k.data( [Break On This Error] false)a.mobile.activePage=k;h(k);y&&D&...dd(k).removeClass(" out in reverse "+
好像 jquery mobile 正在对结果执行一些操作?我不希望这种情况发生。我必须从我的 PHP 中返回一个有效的 jquery 移动 HTML 页面吗?
任何见解都非常感谢。
提前谢谢了,
解决方案:使用<input type="button" id="login_submit" data-theme="a" value="Submit" />
现在我可以通过以下方式捕获点击事件:
<script>
$(document).ready(function() {
$("#login_submit").click(function() {
alert('clicked');
});
});
</script>