gpt4 book ai didi

javascript - 用于 Web 组件/自定义事件 (JS) 的基于 HTML 的事件监听器

转载 作者:太空宇宙 更新时间:2023-11-04 15:54:12 25 4
gpt4 key购买 nike

长话短说; 是否可以在 HTML(而非 JS)中为自定义事件定义事件监听器?

基于此codepen ,我正在尝试执行以下操作:

<my-checkreport
onclick="myFunction()"
oncheck="myFunction1)"
check="myFunction()"
></my-checkreport>

myFunction 执行一些我可以在浏览器控制台中看到的 console.log 内容。当然, native onlick 可以工作,但是 oncheckcheck 都不能工作,对于下面定义的自定义事件(来源来自上面的链接 codepen ):

customElements.define('my-checkbox', class extends HTMLElement {
constructor() {
super();
const shadowRoot = this.attachShadow({mode: 'open'});
this.checkEvent = new CustomEvent("check", {
bubbles: true,
cancelable: false,
});
shadowRoot.innerHTML = `
<label>
<input type="checkbox" id="my-checkbox"></input>
Dummy Enabled
</label>`;
shadowRoot.querySelector('#my-checkbox').addEventListener('click', (e) => {
console.log('checked', e.target.checked);
this.dispatchEvent(this.checkEvent);
});
}
});

是否可以为 HTML 中的自定义事件附加事件监听器?

最佳答案

这是我最接近模拟事件处理程序的 DOM 声明的方法。据我所知,这段代码完成了 DOM 为内置事件处理程序所做的一切。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>On-Event Test</title>
<script>
function onCheckHandler(event) {
console.log('onCheckHandler: %O', event);
event.stopPropagation();
event.stopImmediatePropagation();
//event.preventDefault();
}

function eventListener(event) {
console.log('eventListener: %O', event);
}
(function() {
var template = `<div>Click to Check</div>`;
class MyEl extends HTMLElement {
constructor() {
super();

var rootEl = this.attachShadow({mode: 'open'});
rootEl.innerHTML = template;
rootEl.firstChild.addEventListener('click', () => {
var checkEvent = new CustomEvent("check", {bubbles:true,cancelable:true});
if (this.dispatchEvent(checkEvent)) {
// Do default operation here
console.log('Performing default operation');
}
});
this._onCheckFn = null;
}

static get observedAttributes() {
return ['oncheck'];
}

attributeChangedCallback(attrName, oldVal, newVal) {
if (attrName === 'oncheck' && oldVal !== newVal) {
if (newVal === null) {
this.oncheck = null;
}
else {
this.oncheck = Function(`return function oncheck(event) {\n\t${newVal};\n};`)();
}
}
}

get oncheck() {
return this._onCheckFn;
}
set oncheck(handler) {
if (this._onCheckFn) {
this.removeEventListener('check', this._onCheckFn);
this._onCheckFn = null;
}

if (typeof handler === 'function') {
this._onCheckFn = handler;
this.addEventListener('check', this._onCheckFn);
}
}
}

// Define our web component
customElements.define('my-el', MyEl);
})();
</script>
</head>
<body>
<my-el oncheck="onCheckHandler(event)"></my-el>
</body>
</html>

要让它工作,您需要两个步骤:

第一步:

组件代码必须支持属性更改。

当属性设置为字符串(要调用的函数)时,代码会创建一个临时函数,该函数会尝试调用作为属性值提供的函数。然后将该函数传递到第二步。

当属性被设置为任何其他值或属性被删除时,代码将 null 传递到第二步。

第二步:

组件代码必须支持oncheck属性。

每当更改此属性时,都需要通过调用 removeEventListener 来删除任何先前为该属性定义的事件处理程序。

如果属性的新值是一个函数,则调用 addEventListener 并将该函数作为处理程序。

弄清楚这个很有趣。起初我认为基于 DOM 的 oncheck 处理程序总是第一个。但是通过测试 onclickaddEventHandler('click') 我发现事件处理程序是按照收到的顺序添加的。如果在 DOM 中提供了 onclick,则首先添加该事件监听器。如果您随后调用 removeAttribute('onclick'),然后调用 setAttribute('onclick', 'handler(event)'),那么该事件处理程序将移动到列表。

所以这段代码完全复制了我在 click 事件中所做的事情。

关于javascript - 用于 Web 组件/自定义事件 (JS) 的基于 HTML 的事件监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47240884/

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