发布网友 发布时间:2022-05-12 08:14
共1个回答
热心网友 时间:2022-05-17 19:22
在开发,客户提出这样的一个要求,把单选按钮,可以取消。考虑以后,只能用JS实现,代码如下<html<head<title单选按钮(radio)的取消与选中</title</head<body<form<input type="radio" name='radio' value="1" onclick='check(this)'单选一<input type="radio" name='radio' value="2" onclick='check(this)'单选二</form<script language="javascript"