0
我正在構建一個大js庫,我需要在html屬性中存儲非文字js對象的實例。因爲我不能在這裏寫全js文件,這是一個類似的代碼:在html屬性中存儲非文字js對象
<div id="abc"></div>
<script>
function abc(){this.foo = Math.random(); ... } //The js object
document.getElementById("abc").setAttribute("data-abc",new abc()); //Store the instance
console.log(document.getElementById("abc").getAttribute("data-abc").foo); //Somehow I get undefined
</script>
我成功通過JQuery.data功能來做到這一點,但我here..How可以存儲實例我不能使用jQuery的?謝謝。
學習基礎知識:HTML數據屬性可以存儲字符串,而'String.prototype'沒有'foo'屬性,因此你得到了一個未定義 –
東西值得一提的是jQuery的數據功能,實際上並不將東西存儲在DOM中。 –