gpt4 book ai didi

javascript - 点亮元素 : Not working in a modified Firefox version

转载 作者:行者123 更新时间:2023-12-01 01:05:14 25 4
gpt4 key购买 nike

我正在尝试将 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com