以下是我正在处理的代码片段,保存在index.php中:
$("#login").click(function(){
username=$("#name").val();
password=$("#word").val();
$.ajax({
type: "POST",
url: "login.php",
data: "name="+username+"&pwd="+password,
出于某种原因,我希望目标网址与当前文件(比如index.php)相同而不是login.php,我该怎么做?如果我将php脚本放在index.php中,它就会在表单尚未提交时运行,如果我在其上放置if(isset($_POST['name']))
这样的条件,它就不会再用jquery工作了。但是,当js被禁用时,我会喜欢回退
浏览器。
答案 0 :(得分:0)
试试这个
url : location.href
我们可以将网址设置为当前页面