首页 > 网站 > WEB开发 > 正文

JS之SELECT的VALUE作为BUTTON提交的参数

2024-04-27 15:08:29
字体:
来源:转载
供稿:网友

<!DOCTYPE html><html><head><script language="javascript">function aa(v){ document.getElementById('hidden').value=v}function bb(){ var txt=document.getElementById('hidden').value; location.href='./xx.php?tid='+txt;}</script><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>请选择测试项目</title></head><body><select name="test" id="test" onChange="aa(this.value)">   <option value="">请选择测试项目</option>   <option value="1">1</option>   <option value="2">2</option>   </select><input id="hidden" type="hidden"><input name="confirm" onclick="bb();" type="button"  value="确 定" /></body></html> 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表