我是编程新手,所以我要求一些帮助。我确信这个问题已经得到了PHP的回答。我只想在基本HTML上执行此功能。
HTML第1页
<input type="text" maxlength="255" name="Postcode_6203" id="Zip_Code" class="cat_textbox signup_input_main" />
<input id="find_resta_btn" class="cat_button search_rest_1" type="submit"/>
HTML第2页
<div id="zip_code_container">
</div>
如何使用AJAX和JQuery
完成此操作我会提交我写的示例脚本,但我不想让任何人混淆,因为它不起作用。
答案 0 :(得分:0)
http://api.jquery.com/jQuery.ajax/ 要么 http://api.jquery.com/jQuery.post/
var $name = $("#name_input_id").val();
var $location = $("#location_input_id").val();
$.ajax({
type: "POST",
url: "some.php",
data: { name: $name, location: $location }
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});