本页面跳转到另一个网页,不知道为啥就是没反应。只有window.open才能打开,但那样是跳出了一个新页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本页面跳转到另一个网页,不知道为啥就是没反应。只有window.open才能打开,但那样是跳出了一个新页面相关的知识,希望对你有一定的参考价值。
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="user">用户:</td>
<td><input type="text" id="username" name="username" placeholder="请输入用户名" ></td>
</tr>
<tr>
<td class="user">密码:</td>
<td><input type="password" placeholder="请输入密码" id="password"></td>
</tr>
<tr>
<td></td>
<td><button class="login-btn" id="button1">登陆</button></td>
</tr>
<tr>
<td colspan="2" style="font-size: 18px;line-height: 30px;color: " height="30px" >测试用户:100001 密码:123456</td>
</tr>
</tbody>
</table>
<script language="javascript" src="js/jquery.min.js"></script>
<script>
$('.login-btn').click(function()
if ($('#username').val() == "")
alert("请输入用户名");
return;
else if ($('#password').val() == "")
alert("请输入密码");
return;
else if(($('#username').val() == "100001")&& ($('#password').val() == "123456"))
window.location.href="zhu.html";
return;
else
alert("帐号密码错误");
return;
$('#loginForm').submit()
)
</script>
做的是一个静态没有后台的网站
你的form呐,没看到呢 参考技术A 肯定是哪里的程序出错了。
跳转到另一个网页时自动登录
https://zhidao.baidu.com/question/319573327.html,我看到你在这个里面的回答.我的需求是这样的,想写一个超链接或者button按钮,触发的时候跳转到第二个页面,第二个页面需要账户和密码进行登录,账户密码我都知道,如何实现跳转后自动登录?
A,B网站,你已经登录B网站过,且支持cookie,从a网站跳转到b网站 ,自动变成登录状态。
自己写一个监控程序,当从a到b的时候自动输入登录。
假设这是你从A页面得到的用户名名和密码;
$(function ()
//登录函数,页面一加载先执行的函数
login()
)
function login()
if(username==""||password =="")
alert("账号或者密码为空")
window.location.assign(url)//登录界面
else
//正常登录写你的登录代码
以上是关于本页面跳转到另一个网页,不知道为啥就是没反应。只有window.open才能打开,但那样是跳出了一个新页面的主要内容,如果未能解决你的问题,请参考以下文章