点击单选框就直接激活链接的实现代码 2022-07-15 80酷酷网 80kuku.com 单选框|链接<html><head><!--第一步:把如下代码加入到“head”区域中--><script>function go(HrefName) {window.location.href = HrefName;}</script></head><body><!--第二步:把如下代码加入到“body”区域中--><form name="form"><div align="center"><input type="radio" name="HrefName" >选中即激发了超链接<input type="radio" name="HrefName" >选中即激发了超链接<input type="radio" name="HrefName" >选中即激发了超链接</div></form></body></html> [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]