2013-07-03 89 views
4

我只是想使用javascript將'autobuffer'屬性添加到我的視頻標籤中。如何添加空白屬性到我的視頻標籤?

基本上是:

var video = document.createElement('video'); 
video.addAttribute('autoBuffer'); 

而且我還會參加:

<video autoBuffer></video> 

我想:

video.setAttribute('autoBuffer'); => <video autoBuffer="undefined"></video> 

哪項是錯誤的...

回答

6

的第二個參數setAttribute必須b總是一個字符串 - 目前你隱式傳遞的undefined被轉換爲一個。使用

video.setAttribute('autoBuffer', ''); 
+0

快,很好,對!不能相信我沒有嘗試過......乾杯! – Jalyo