答复仅供参考,具体请咨询10000或登录安徽电信网上营业厅ah.189.cn为准,安徽电信竭诚为您服务,希望我的回答能得到您的采纳。安徽电信“存款到银行 0元拿手机”活动上线!凭身份证及银行卡至银行活动网点,办理存款免费拿手机业务。只要您在银行存款,同时承诺手机套餐保底消费和在网时长,安徽电信即免费赠送您手机一部,同时存款还能获得利息。详情访问安徽电信网上营业厅。
验证方法这样改一下就可以了function yanzheng(){
if(myfrom.url.value==""){
alert("请输入域名")
return false
}
else if(!/input.com .cn$/.test(myfrom.url.value)){
alert("对不起,您输入的格式不正确")
return false
}
}
<form aciton="../php/register.php" method="post"><p>
<label style="color: #ffffffwidth: 40%text-align: right">所&nbsp&nbsp在&nbsp&nbsp省:</label>
<select style="width:75%" id="s_province" name="s_province" onchange="setVal1(this.options[this.selectedIndex].text)"></select>
</p>
<p>
<label style="color: #ffffffwidth: 40%text-align: right">所&nbsp&nbsp在&nbsp&nbsp市:</label>
<select style="width:75%" id="s_city" name="s_city" onchange="setVal2(this.options[this.selectedIndex].text)"></select>
</p>
<p>
<label style="color: #ffffffwidth: 40%text-align: right">所&nbsp&nbsp在&nbsp&nbsp县:</label>
<select style="width:75%" id="s_county" name="s_county" onchange="setVal3(this.options[this.selectedIndex].text)"></select>
</p>
<input type="hidden" id="shengText" value="" name="shengText"/>
<input type="hidden" id="xianText" value="" name="xianText"/>
<input type="hidden" id="shiText" value="" name="shiText"/>
<script class="resources library" src="http://sandbox.runjs.cn/uploads/rs/267/g3ugugjp/area.js" type="text/javascript"></script>
<script type="text/javascript">_init_area()</script>
<p><button type="submit" class="button1">注 册</button>
</p>
</form>
</div>
</body>
<script type="text/javascript">
var Gid = document.getElementById
var showArea = function(){
Gid('show').innerHTML = "<h3>省" + Gid('s_province').value + " - 市" +
Gid('s_city').value + " - 县/区" +
Gid('s_county').value + "</h3>"
}
Gid('s_county').setAttribute('onchange','showArea()')
</script>
<script language="javascript">
function setVal1(_text)
{
document.getElementById("shengText").value=_text
}
function setVal2(_text)
{
document.getElementById("shiText").value=_text
}
function setVal3(_text)
{
document.getElementById("xianText").value=_text
}
</script>
这样我是能获取到值, 但是只获取到最后一个 县的那个 select值。 试了半个小时。发现是js文件为select赋值的原因。 有没有什么其他办法。 既可以用js文件为select赋值,还能获取到值为文本框赋值。