各瀏覽器對css,html,js支援的差異

來源:互聯網
上載者:User

1對id的支援不一樣。

js:

function testInnerHTML2(){
 alert('start!');
 if(content.innerHTML.indexOf('id')!=-1)
  alert('id');
 if(content.innerHTML.indexOf('test')!=-1)
  alert('test');
 if(content.innerHTML.indexOf('con'!=-1))
  alert('con');
 if(content.className!='')
  alert(content.className);

html:

<body onload="testInnerHTML2();" id="content">
<div id="test">con</div>
</body>

IE能判斷id,test,con存在,並且body的class屬性當前為空白。

但是firefox似乎不能做以上判斷。(這個結論似乎不對!!!!)

這個似乎表明firefox不支援直接使用id到運算式中。如果將js中的content改為document.getElementById("content"),js在兩個瀏覽器中表現就一樣了。

2display:none在IE中的使用

似乎直接使用display:none對div,是沒有用的,加上一個span,對span使用這個規則才行:

<div><span></span></div>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.