以下JavaScript代碼在FF和Chrome中工作,但在任何版本的IE中。似乎沒有任何明顯的錯誤,我可以找到。Javascript 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>
什麼SELECTED_VALUE包含在IE瀏覽器? – m02ph3u5
嗨,它返回「vehicles_sales.nodate」 –
並確實#search_by2_from_row有一個屬性隱藏? – m02ph3u5