火狐和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;
} 展开
说要加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;
} 展开
3个回答
展开全部
尊敬的用户,您好!很高兴为您答疑
对于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>
希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
对于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>
希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
展开全部
下拉框(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>
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>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
抱歉!这个问题不懂哦,请再加油吧!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询