使用表格登录网页

问题描述 投票:0回答:1

我制作了一个将登录数据发送到该网站的表格:https://kintai.jinjer.biz/sign_in我正在尝试使用我的表单登录网站。

但是,当我单击提交时,服务器会发送一个JSON文件作为响应。有什么方法可以使服务器将我重定向到登录页面,即https://kintai.jinjer.biz/staffs/top

这是我的表单的html代码

    <form method="post" action="https://kintai.jinjer.biz/v1/sign_in" class="login-form"  id="jlogin-form-staff"><dl class="login-form__item">

    <input class="login-input--text jcompanycode" id="company_code" name="company_code"  type="text" value="3809" />

<input class="email login-input--text" name="email" type="text" value="1234" />

<input class="jpassword login-input--text" name="password" placeholder="パスワード" type="password" value="das1728940" />

   <input onclick = "window.location.href= 'https://kintai.jinjer.biz/staffs/top';" type="submit" value= "submit">

</form>

我尝试使用onclick重定向,但没有用。我也尝试使用不起作用的功能。任何其他想法将不胜感激

javascript html css post
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.