admin管理员组文章数量:1345160
I am learning web ponents using Polymer. I am a beginner in web development.
How can I understand what does dot notation means in .checked
attributes or property of HTML element?
<input id="state" type="radio" name=${this.group} .checked=${this.checked} />
I am learning web ponents using Polymer. I am a beginner in web development.
How can I understand what does dot notation means in .checked
attributes or property of HTML element?
<input id="state" type="radio" name=${this.group} .checked=${this.checked} />
Share
Improve this question
edited Nov 12, 2020 at 3:32
Penny Liu
17.6k5 gold badges86 silver badges108 bronze badges
asked Apr 28, 2020 at 21:47
user2914606user2914606
711 silver badge2 bronze badges
1 Answer
Reset to default 12Overall the binding type consists of these character prefixes: .prop
, ?optional
and @event
.
html`<input
id="state"
type="radio"
name=${this.group}
@change=${onChange}
?required=${required}
.checked=${this.checked} />`
You can insert JavaScript expressions as placeholders for HTML text content, attributes, Boolean attributes, properties, and event handlers.
- Text content:
<p>${...}</p>
- Attribute:
<p id="${...}"></p>
- Boolean attribute:
?disabled="${...}"
- Property:
.value="${...}"
- Event handler:
@event="${...}"
lit-element documentation
Live Demo
本文标签: javascriptLitElement Dot with HTML elements attributepropertyStack Overflow
版权声明:本文标题:javascript - LitElement Dot with HTML elements attributeproperty - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743777281a2537209.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论