javascript使用getElementById會抓到name的問題

來源:互聯網
上載者:User

      今天一個朋友問一個問題。

      頁面的html代碼為:
      <select id="datatime" name="datatime"></select>
      <input type="hidden" id="aaaa" name="datatime" value="xxx" />

      他想擷取select的值,所以他寫了以下代碼。

      document.getElementById("datatime");但是很神奇的是,他還擷取到了hidden input的值。

      我們很想不通原因,後來他在網上查了一些資料之後發現也有其它人碰到過類似問題。

      document.getElementById 有時會抓 name 放過了 id ,據說是 IE 的一個 BUG ;頁面中有 <input type="hidden" id="hello8" name="category_id" value="2" /> <select id="category_id" onchange="al();"> 一個是name="category_id" 一個是id="category_id",用document.getElementById取第二個,可是,取到的卻是第一個name=category_id,在IE中getElementById竟然不是先抓id而是先找name相同的物件。

      我想這應該就是原因吧。分享給有這個疑惑的朋友們。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.