我有一个页面,用户可以在其中为某些选项填写 $_GET 数据。我想使用 AJAX 将这些 $_GET 变量传递给 .php 脚本。但我的问题是如何在不刷新页面的情况下传递他们迄今为止填写的那些 $_GET 变量?
到目前为止,这是我的代码。
$.ajax({
type: "GET",
url: "serverside script to process on data",
data:{name:youwant}, // Here is where I want to take what the user has filled out so
// far, and place it here all without refreshing the page
success: function(data){
alert("return here if success")
}
})