作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 LitElement 集成到工作项目中。它适用于所有浏览器,但禁用了 customElements
的修改版 Firefox 除外。有什么办法可以解决这个问题吗?如果我在 about:config
中打开,要求用户激活它不是一个选项。
组件代码:
import {html, LitElement, property} from 'lit-element';
class MyElement extends LitElement {
@property({type: String}) myProp = 'stuff';
render() {
return html`
<p>Hello World</p>
${this.myProp}
`;
}
}
customElements.define('my-element', MyElement);
最佳答案
LitElement uses Custom Elements for easy inclusion in web pages, and Shadow DOM for encapsulation. There’s no new abstraction on top of the web platform.
如果自定义元素被禁用,我不希望 LitElement 工作。
但是,您可以尝试使用 customElements
的 polyfill,例如 https://github.com/webcomponents/custom-elements – 虽然它适用于不支持 customElements
的浏览器,但我想它也可以在禁用该功能的情况下工作。
关于javascript - 点亮元素 : Not working in a modified Firefox version,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55710104/
我是一名优秀的程序员,十分优秀!