如何使用JavaScript功能,根据单选按钮的选择,使我的表单提交按钮打开不同的URL



我是JavaScript新手,很抱歉,如果这真的很简单。。。

我正在努力实现的目标:

有一个包含10种不同单选按钮选择的表格。单击"提交"按钮,应根据用户的选择将其重定向到新的URL。

这是我的HTML表单:

<form onsubmit="myFunction()" class="final_question">
<div class="question-container">
<div class="form-box first-answer">
<label for="Option1">Option 1</label>
<input type="radio" id="Option1" name="option">
</div>
<div class="form-box second-answer">
<label for="Option2">Option 2</label>
<input type="radio" id="Option2" name="option">
</div>
<div class="form-box third-answer">
<label for="Option3">Option 3</label>
<input type="radio" id="Option3" name="option">
</div>
<div class="form-box fourth-answer">
<label for="Option4">Option 4</label>
<input type="radio" id="Option4" name="option">
</div>
<div class="form-box fifth-answer">
<label for="Option5">Option 5</label>
<input type="radio" id="Option5" name="option">
</div>
<div class="form-box sixth-answer">
<label for="Option6">Option 6</label>
<input type="radio" id="Option6" name="option">
</div>
<div class="form-box seventh-answer">
<label for="Option7">Option 7</label>
<input type="radio" id="Option7" name="option">
</div>
<div class="form-box eighth-answer">
<label for="Option8">Option 8</label>
<input type="radio" id="Option8" name="option">
</div>
<div class="form-box ninth-answer">
<label for="Option9">Option 9</label>
<input type="radio" id="Option9" name="option">
</div>
<div class="form-box tenth-answer">
<label for="Option10">Option 10</label>
<input type="radio" id="Option10" name="option">
</div>

<div class="form-box submit-button">
<input type="submit" class="final_question_submit" id="mysubmit">
</div>
</div>
</form>

这是我的JavaScript函数(插入了伪URL(:

function myFunction() {
if(document.getElementById('Option1').checked) {
document.getElementById('mysubmit').href = "https://www.google.com";
}
else if(document.getElementById('Option2').checked) {
document.getElementById('mysubmit').href = "https://facebook.com";
}
else if(document.getElementById('Option3').checked) {
document.getElementById('mysubmit').href = "https://www.instagram.com";
}
else if(document.getElementById('Option4').checked) {
document.getElementById('mysubmit').href = "https://www.twitter.com";
}
else if(document.getElementById('Option5').checked) {
document.getElementById('mysubmit').href = "https://www.stackoverflow.com";
}
else if(document.getElementById('Option6').checked) {
document.getElementById('mysubmit').href = "https://www.w3cschools.com";
}
else if(document.getElementById('Option7').checked) {
document.getElementById('mysubmit').href = "https://www.freecodecamp.org";
}
else if(document.getElementById('Option8').checked) {
document.getElementById('mysubmit').href = "https://www.edabit.com";
}
else if(document.getElementById('Option9').checked) {
document.getElementById('mysubmit').href = "https://www.scrimba.com";
}
else(document.getElementById('Option10').checked) {
document.getElementById('mysubmit').href = "https://www.javascript.com";
}
}

Forms使用元素名称

const 
direction = 
{
Option1: 'https://www.google.com"',
Option2: 'https://facebook.com',
Option3: 'https://www.instagram.com',
Option4: 'https://www.twitter.com',
Option5: 'https://www.stackoverflow.com',
Option6: 'https://www.w3cschools.com',
Option7: 'https://www.freecodecamp.org',
Option8: 'https://www.edabit.com',
Option9: 'https://www.scrimba.com"',
Option10: 'https://www.javascript.com'
}
, myForm = document.getElementById('my-form')
;
myForm.onsubmit=e=>
{
e.preventDefault()
if (myForm.option.value) 
document.location = direction[ myForm.option.value  ]
}
label, button {
display: block;
float: left;
clear: both;
width: 7em;
margin: .5em;
}
input[type=radio] {
float: right;
}
<form action="" id="my-form">
<label> Option 1  <input type="radio" name="option" value="Option1" > </label>
<label> Option 2  <input type="radio" name="option" value="Option2" > </label>
<label> Option 3  <input type="radio" name="option" value="Option3" > </label>
<label> Option 4  <input type="radio" name="option" value="Option4" > </label>
<label> Option 5  <input type="radio" name="option" value="Option5" > </label>
<label> Option 6  <input type="radio" name="option" value="Option6" > </label>
<label> Option 7  <input type="radio" name="option" value="Option7" > </label>
<label> Option 8  <input type="radio" name="option" value="Option8" > </label>
<label> Option 9  <input type="radio" name="option" value="Option9" > </label>
<label> Option 10 <input type="radio" name="option" value="Option10"> </label>
<button type="submit">submit</button>
</form>

  • 使用value=""选项属性
  • 停止使用内联on*=""属性,就像您(希望(不用内联style=""属性一样。它很难调试,JS应该只放在一个地方,那就是你的Script标记或文件
  • 查看文档位置
  • 查看Event.prventDefault((
  • 不需要时不要使用for=""
  • 在JS的.querySelector()中使用:checked伪选择器

const EL_finalForm = document.querySelector("#final_question");
EL_finalForm.addEventListener("submit", (ev) => {
ev.preventDefault();
const EL_checked = EL_finalForm.querySelector('input[name="option"]:checked');
if (!EL_checked) return alert("Select an option");
document.location = EL_checked.value;
});
<form id="final_question">
<div class="question-container">
<label class="form-box">
<span>Option 1</span>
<input type="radio" value="https://www.google.com" name="option">
</label>
<label class="form-box">
<span>Option 2</span>
<input type="radio" value="https://www.facebook.com" name="option">
</label>
<label class="form-box">
<span>Option 3</span>
<input type="radio" value="https://www.instagram.com" name="option">
</label>
<label class="form-box">
<input type="submit" class="final_question_submit">
</label>
</div>
</form>

尝试使用:

window.open("https://your.url")

代替使用:

document.getElementById('mysubmit').href = "https://www.javascript.com";

如果你想在同一个选项卡中打开窗口:

window.open("https://www.youraddress.com","_self")

最新更新