这里为您讲解一下“javascript实现点击单选按钮链接转向对应网址的方法”的攻略:
这里为您讲解一下“javascript实现点击单选按钮链接转向对应网址的方法”的攻略:
1. HTML 结构
首先,需要在 HTML 中添加单选按钮和链接的结构,例如:
<input type="radio" name="link" value="https://www.example.com/1"/> Example 1<br>
<input type="radio" name="link" value="https://www.example.com/2"/> Example 2<br>
<input type="radio" name="link" value="https://www.example.com/3"/> Example 3<br>
<a href="#" id="myLink">Go to link</a>
2. Javascript 实现
接着,在 JavaScript 中添加点击事件,根据选中的单选按钮的值修改链接的 href
属性,并跳转到对应网址,例如:
let radios = document.getElementsByName('link');
let link = document.getElementById('myLink');
for (let i = 0; i < radios.length; i++) {
radios[i].addEventListener('click', function() {
link.href = this.value;
});
}
link.addEventListener('click', function(e) {
e.preventDefault();
window.location.href = link.href;
});
以上代码中,通过 getElementsByName
获取单选按钮组,遍历每个单选按钮,并为其添加点击事件。在事件处理程序中,将选中单选按钮的值设置为链接的 href
属性。每个单选按钮的值,分别对应了不同的网址。
同时,为链接也添加了点击事件,在事件处理程序中,首先阻止默认的链接跳转行为,然后使用 window.location.href
跳转到设置的网址。
3. 示例
这里提供两个示例:
- 当选中“Example 1”单选按钮时,点击链接跳转到
https://www.example.com/1
:
<input type="radio" name="link" value="https://www.example.com/1" checked/> Example 1<br>
<input type="radio" name="link" value="https://www.example.com/2"/> Example 2<br>
<input type="radio" name="link" value="https://www.example.com/3"/> Example 3<br>
<a href="#" id="myLink">Go to link</a>
- 当选中“Example 2”单选按钮时,点击链接跳转到
https://www.example.com/2
:
<input type="radio" name="link" value="https://www.example.com/1"/> Example 1<br>
<input type="radio" name="link" value="https://www.example.com/2" checked/> Example 2<br>
<input type="radio" name="link" value="https://www.example.com/3"/> Example 3<br>
<a href="#" id="myLink">Go to link</a>
以上就是“javascript实现点击单选按钮链接转向对应网址的方法”的完整攻略,希望能对您有所帮助。
沃梦达教程
本文标题为:javascript实现点击单选按钮链接转向对应网址的方法


猜你喜欢
- Ajax请求超时与网络异常处理图文详解 2023-02-23
- 最新JS正则表达式验证邮箱和手机号实例(2022) 2022-10-21
- CSS设置HTML元素的高度与宽度的各种情况总结 2023-12-14
- 使用Vue实现移动端左滑删除效果附源码 2023-12-25
- javascript中的不等于怎么表示 2022-12-10
- JavaScript CSS修改学习第二章 样式 2023-12-15
- vue cli3 + ts 打包之后,不显示页面 2023-10-08
- HTML+CSS制作心跳特效的实现 2022-09-20
- 学习小实例--滚动条的简单实现 2022-11-13
- 简单实现Ajax无刷新分页效果 2023-02-01