火狐和Google浏览器不兼容document.getElementById("yhm").value你这个问题是怎么解决的?

火狐和Google浏览器不兼容document.getElementById("yhm").value你这个问题是怎么解决的?说要加ID属性,怎么样加?我的代码是这样的<... 火狐和Google浏览器不兼容document.getElementById("yhm").value你这个问题是怎么解决的?
说要加ID属性,怎么样加?
我的代码是这样的
<select onChange="updateFabric(this.value);" id="fab_def_select" class="text10grey"><%=fab_def_select%></select>
<span id="fabric_desc" style="font-weight:600;"><%=fab_def%></span>
<script type="text/javascript"> document.getElementById("fab_def_select").value="<%=fab_def %>";</script>

function updateFabric(fabCode){
document.getElementById('fab_code').innerHTML = fabCode;
document.getElementById("fabric_desc").innerHTML = fabCode;
document.getElementById('vfabric1').value = fabCode;
}
展开
 我来答
火狐
2014-01-09 · Firefox,最快最安全的上网体验
火狐
Mozilla Firefox火狐浏览器,是一款开放安全的开源浏览器,全球拥有5亿用户。
向TA提问
展开全部
  尊敬的用户,您好!很高兴为您答疑
  对于select控件来说,是不存在value属性的。
  代码示例:
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body><select name="jumpMenu" id="jumpMenu" onChange="jumpMenu('parent',this,0)"> <option id="1" value="跳转URL">111</option> // 111 是显示给用户的信息 <option id="2" value="跳转URL">222</option> <option id="3" value="跳转URL">333</option> <option id="4" value="跳转URL">444</option> <option id="5" value="跳转URL">555</option></select><script type="text/javascript">function display(optionID){var all_options = document.getElementById("jumpMenu").options;for (i=0; i<all_options.length; i++){if (all_options[i].id == optionID) // 根据option标签的ID来进行判断 测试的代码这里是两个等号 { all_options[i].selected = true; } }};display("4");</script></body></html>
  希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
百度网友1acbb573f
2011-01-02 · TA获得超过203个赞
知道答主
回答量:47
采纳率:0%
帮助的人:62.3万
展开全部
下拉框(select)不能直接取值。
document.getElementById("fab_def_select").value 错误
应为:
document.getElementById("fab_def_select").options[document.getElementById("fab_def_select").selectedIndex].value
且只读。 赋值时可用循环
<script type="text/javascript">
var e = document.getElementById("fab_def_select");
for(var i=0; i<e.options.length; i++)
{
if(e.options[i].value=="<%=fab_def %>") e.options[i].selected = true;
}
</script>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
taxun74
2010-12-24 · TA获得超过476个赞
知道答主
回答量:253
采纳率:0%
帮助的人:0
展开全部
抱歉!这个问题不懂哦,请再加油吧!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式