我正在纠正一个有错误的网页,我检测到它在哪里,但我不知道其依据。
这个 js 在 Firefox 和资源管理器中完美运行,但在 Chrome 中却不行。
所以,我们开始:
--HTML--
<div id='mesa' onclick='gotoSection( mesa )' >
--JAVASCRIPT--
<script type="text/javascript">
function gotoSection( section ){
alert( section );
$( '#section_container div' ).css( "display" , "none" );
$( section ).css( "display" , "block" );
}
</script>
--
因此,在 Firefox 中,警报显示为“[object HTMLDivElement]”,但在 Chrome 中,警报显示为“未定义”。