location.href无法正常工作 [英] location.href not working

查看:89
本文介绍了location.href无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我早些时候使用过location.href,但是现在它没有重定向到页面.这是我的代码

I have used location.href in my earlier days but now its not redirecting to page. here is my code

function AuthenticateUserWithPage() {
var UId = $('#amwayId').val();//username
var UPw = $('#amwayPw').val();//password
var ischecked = $('#idSave').is(':checked');// check remember me checkbox status

if (UId != '' && UPw != '') {
    $.ajax({
        type: "POST",
        contentType: "application/json; charset=utf-8",
        url: "../KPPRMobService/PNBMobWebService.asmx/IsValidUserWithPage",
        data: JSON.stringify({ username: UId, password: UPw, ischecked: ischecked }),
        async: false,
        success: function (data) {
            var obj = data.d;
            if (obj != "FALSE") {
                var targetUrl = "http://" + window.location.host + obj;
                window.location.href = targetUrl;
                //window.location.replace(targetUrl);
                return false;
            }
            else {
                $('#amwayId').val('');
                //if username or password is invalid
                alert("Please check your ID or password. The ID is not registered or the ID/ password is wrong.");
            }
        },
        error: function (result) {
            //if error occured.
            $('#amwayId').val('');
            alert("You cannot log in. Contact support center for further inquiries..");
        }
    });

}
else {
    //if username or password is null
    alert("Please enter ID/ password.");
    return false;
}

}

我使用此链接作为参考:参考.非常感谢.

I use this link as reference: reference.Thanks in Advance.

推荐答案

Php:

 $form_data = array();
 $form_data['message'] = "success";
 $form_data['redirect'] = "http://www.example.com/example";
 echo json_encode($form_data)

Ajax:

if (data.message == 'success') {
window.location.href = data.redirect;
return false;
}else if(){
etc...
}

这篇关于location.href无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆