我在jQTouch中使用该函数从PHP代码返回成功的html数据。 数据显示在调用表单下方,然后冻结应用程序。
$('#ajax_post').submit(function(event,info){
var text = $("input[type=text]", this);
text.blur();
var results = $('#results');
$.post('processgia.php',$("#ajax_post").serialize(), function(data) {
results.html(data);});
我正在使用html表单进行Ajax调用。
<form id="ajax_post" class="form current" method="POST" action="processgia.php">
<ul class="rounded">
<li>
<input type="text" name="anumber" value="" placeholder="Report Number:"/></li>
</ul>
<ul class="rounded">
<li> <input type="text" name="weight" value="" placeholder="Weight:" >
<a style="top:12px; right:20px;color:rgba(0,0,0,.1)" href="#" class="submitwButton">Search</a> </li> </ul></form> <div id="results"></div>
在正确显示html数据后导致应用冻结的代码有什么问题? 如何将相同的数据重定向到另一个页面?