html中radio怎么写

1.html中更改radio 触发事件 js怎么写HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
New Document
function to_change(){
var obj = document.getElementsByName('aa');
for(var i=0;iif(obj[i].checked==true){
if(obj[i].valuehttp://www.xuexi88.com/zhishi/=='s'){
document.getElementById('content').innerHTML='售售';
}else if(obj[i].valuehttp://www.xuexi88.com/zhishi/=='z'){
document.getElementById('content').innerHTML='租租';
}
}
}
}
//-->


2.如何在html中获取被选中的radio的值所生成的网页类似于这样
<form method="post" action="当前页面的地址">
<input type="radio" name="userress_id" id="radio" value="http://www.xuexi88.com/zhishi/address_id1" />;电话:xxx
<input type="radio" name="userress_id" id="radio" value="http://www.xuexi88.com/zhishi/address_id2" />;电话:xxx
</form>
然后最后面改为:
<?php
$userress_id = $_POST["userress_id"];
if($userress_id == null)
exit();
$userress_id = $userress_id > 0 ?。。
?>
3.如何实现html中radio的readonly可以用js获得radio的值,我写了一个小demo,希望对你有用:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<SCRIPT LANGUAGE="JavaScript">
<!--
function aa(index){
document.all("a")[index].checked=true;
document.all("t").value=http://www.xuexi88.com/zhishi/document.all("a")[index].value;
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<INPUT TYPE="radio" NAME="a" value="http://www.xuexi88.com/zhishi/0" disabled="true">;男
<INPUT TYPE="radio" NAME="a" value="http://www.xuexi88.com/zhishi/1" disabled="true">;女<br>
radio的值<INPUT TYPE="text" NAME="t"><br>
<INPUT TYPE="button" NAME="" value="http://www.xuexi88.com/zhishi/选中第一个" onclick="aa(0)">
<INPUT TYPE="button" NAME="" value="http://www.xuexi88.com/zhishi/选中第二个" onclick="aa(1)">
</BODY>
</HTML>
4.html语言制作网页单选框<form name="form1>
<table border="1">
<tr>
<td>;飞行计划</td>
<td>
<input type="radio" name="r1" value="http://www.xuexi88.com/zhishi/0" /><span>;保存</span>
<input type="radio" name="r1" value="http://www.xuexi88.com/zhishi/1" /><span>;发送</span>
</td>
</tr>
<tr>
<td>;进境预报</td>
<td>
<input type="radio" name="r2" value="http://www.xuexi88.com/zhishi/0" /><span>;保存</span>
<input type="radio" name="r2" value="http://www.xuexi88.com/zhishi/1" /><span>;发送</span>
</td>
</tr>
<tr>
<td>;进境确报</td>
<td>
<input type="radio" name="r3" value="http://www.xuexi88.com/zhishi/0" /><span>;保存</span>
<input type="radio" name="r3" value="http://www.xuexi88.com/zhishi/1" /><span>;发送</span>
</td>
</tr>
…………………………
<tr><td> </td><td><input type="reset" /></td></tr>
</table>
</form>
根据上面的三行应该可以看出规律来了吧,根据这个规律往下写就是了 。
【html中radio怎么写】

html中radio怎么写