0

以下 javascript 代码在 FF 和 Chrome 中运行,但在任何版本的 IE 中运行。我似乎找不到任何明显的错误。

任何帮助将不胜感激。

<script type="text/javascript">
// hide/expose  search_by2 to/from dates 
function hide_search_by2(that){
    selected_value = that.options[that.selectedIndex].value;

    if(selected_value == 'vehicles_sales.nodate'){
        document.getElementById("search_by2_from_row").hidden=true;
        document.getElementById("search_by2_to_row").hidden=true;  
    } else {
        document.getElementById("search_by2_from_row").hidden=false;
        document.getElementById("search_by2_to_row").hidden=false;  
    }
}
</script>
4

1 回答 1

1

隐藏了什么?

如果要隐藏元素,请将 display 设置为 none。

隐藏

document.getElementById("search_by2_from_row").style.display = "none";

显示

document.getElementById("search_by2_from_row").style.display = "inline";  //or "block"

或能见度

隐藏

document.getElementById("search_by2_from_row").style.visibility = "hidden";

显示

document.getElementById("search_by2_from_row").style.visibility = "visible";  
于 2012-11-07T00:42:58.040 回答