一个表单重定向到多个html页面

xj3cbfub  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(177)

嗨,我想知道是否可能
一个表单不同的值当点击提交时,它将重定向到与表单上输入的值相等的不同页面

<form name='home' type='get' action='html1.html'>

<input type='text' name='code' value=''>

<input type='image' onclick='return check(this.form)' value='login'

Script:

Function check(form)
{
If(form.user.value == "html1")
{
       Return true;
}
else
{
       Location.href = "error.html";
       Return false;
}
}

===============
因此,我尝试做的是创建一个表单,其中有一个文本框,用户可以在其中输入html 1、html 2、html 3等等。
如果用户在表单文本框中输入html 1并单击“提交”按钮,则将重定向到html 1页面;如果用户在文本框中输入html 2并单击“提交”按钮,则将重定向到html 2页面,依此类推。
提前感谢各位!
如果用户在表单文本框中输入html 1并单击“提交”按钮,则将重定向到html 1页面;如果用户在文本框中输入html 2并单击“提交”按钮,则将重定向到html 2页面,依此类推。

jtoj6r0c

jtoj6r0c1#

我不知道你为什么要这样做,但这将为你工作:

超文本标记语言

<input type='text' id="txturl" name='code' value=''>
<input type='image' onclick='check(this)' value='login'>

标枪

function check(form)
 {
   var txtURL=document.getElementById("txturl");
   if(txtURL.value == "html1")
    {
      return true;
    }
   else
    {
      window.location.href = "error.html";
    }
 }

https://jsfiddle.net/ramsingh333/jzacf0kd/5/

相关问题