question mark add to url when click login

question mark add to url when click login



this code in the first time clicked take me to localhost:8080//? it should take me directly to localhost:8080//admin.html why this happens ??


$("#admin-login").click(function()

var data = "username": $("#adminUserName").val(), "password": $("#adminPassword").val();
$.ajax(
url: "/api/admin/login",
type: "POST",
dataType: "json",
data: JSON.stringify(data),
success:function (data)
if(data.success)

window.location= "/admin.html";

else

alert(data.message)


)
);





Take a look at your browser debugging tools, especially the timeline. Maybe admin.html does not exist and what you are looking at is the the page after you were redirected by the server.
– Toxantron
Apr 30 at 12:27


admin.html





no its run correctly after that , sometime its open and sometimes dont
– ali amer
Apr 30 at 12:48




1 Answer
1



try


window.location.href = "/admin.html";



sometimes window.location create errors. This solved a problem in Typescript redirecting error.






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

PHP code is not being executed, instead code shows on the page

Administrative divisions of China

Cardinality of the set of algorithms