文章列表
/**
*获得radio的值
*/
function getRadioValue(){
var obj;
obj=document.getElementsByName("vtype");
if(obj!=null){
var i;
for(i=0;i<obj.length;i++){
if(obj[i].checked){
return obj[i].value;
}
...