php if 判断 radio4
发布网友
发布时间:2024-03-08 13:10
我来回答
共3个回答
热心网友
时间:2024-04-09 14:44
这个需要用到js,
function changetimestype(){
var formac = document.getElmentById("myFORM");
var rads = document.getElementsByName("is_curr");
for(var i=0;i<rads.length;i++){
if(rads[i].value == 1){
formac .action="index.php?action=re_zong";
}else{
formac .action="index.php?action=re_dai";
}
}
}
你可以试一下
热心网友
时间:2024-04-09 14:44
你的changetimestype(this)函数是怎么写的?
热心网友
时间:2024-04-09 14:45
<?php
if ($_POST["is_curr"]==1) {$ourl="index.php?action=re_zong";}
if ($_POST["is_curr"]==0) {$ourl="index.php?action=re_dai";}
?>