如何在聚合物自定義元素中使用getElementById?getElementById聚合物元素
這裏是我的元素:
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../styles/shared-styles.html">
<dom-module id="bb-calendar">
<template>
<style is="custom-style" include="shared-styles"></style>
<div class="card">
<paper-toolbar>
<div title>Calendar</div>
</paper-toolbar>
<div id="hideme">
<div>this should be hidden</div>
</div>
</div>
</template>
<script>
Polymer({
is: 'bb-calendar',
ready: function() {
document.getElementById("hideme").style.display = 'none';
}
});
</script>
</dom-module>
當我運行代碼,我收到此錯誤信息:Uncaught TypeError: Cannot read property 'style' of null
很顯然,我做錯了什麼,但我不知道是什麼。
感謝您的幫助!解決問題的方式就像你在上一個答案中所做的一樣(其他人不爲我工作)。 1.修正了「in the class name。2. instead of properties I used used'this.hiddenClass'。Thanks again。 –
感謝您的反饋併爲錯誤而感到遺憾,我自己只使用Dart。 –
我相信正確的語法'ready'處理程序是'this。$。hideme'和'this。$$('#hideme')'。 –