我想通过函数&#34在html中点击元素的id;取这个"。 我不明白如何访问html元素
<style include="shared-styles">
:host {
display: block;
}
</style>
<div on-click="take_this" id="1">
</div>
<script>
class MyView1 extends Polymer.Element {
static get is() {
return 'my-view1';
}
takethis() {
}
}