admin管理员组文章数量:1345068
I have:
<a href={link} on:click={() => func(param)} on:auxclick={() => func(param)}>
click
</a>
Is there any way I can bine on:click
and on:auxclick
into on:click|auxclick
, or something similar to this effect? (Code below gives me a syntax error.)
<a href={link} on:click|auxclick={() => func(param)}>
click
</a>
Edit: for clearer description
I have:
<a href={link} on:click={() => func(param)} on:auxclick={() => func(param)}>
click
</a>
Is there any way I can bine on:click
and on:auxclick
into on:click|auxclick
, or something similar to this effect? (Code below gives me a syntax error.)
<a href={link} on:click|auxclick={() => func(param)}>
click
</a>
Edit: for clearer description
Share Improve this question edited Jul 29, 2021 at 5:57 lefrost asked Jul 28, 2021 at 19:13 lefrostlefrost 5911 gold badge10 silver badges21 bronze badges3 Answers
Reset to default 7Nope, this is not possible without creating named function.
And syntax you proposed: on:click|auxclick={func}
is already reserved by event modifiers feature (you can learn about them from here)
In the future you maybe could listen for all events - proposal and syntax could be found in issue on github
UPD: Also remend you to look at @kindoflew answer. You can implement this using custom action.
You could use an action and manually set which events you want listened for:
// multiClicks.js
export const multiClicks = (node, callback) => {
node.addEventListener('click', callback)
node.addEventListener('auxclick', callback})
return {
destroy() {
node.removeEventListener('click', callback)
node.removeEventListener('auxclick', callback})
}
}
}
and then use it in your ponent:
<script>
import { multiClicks } from './multiClicks.js'
</script>
<a use:multiClicks={() => func(param)}>...</a>
move your click handler in to a script tag.
<script>
function handleClick(event) {
// do something here
}
</script>
<a href={link} on:click={handleClick} on:auxclick={handleClick}>
click
</a>
本文标签: javascriptHow to trigger same function on different events in SvelteStack Overflow
版权声明:本文标题:javascript - How to trigger same function on different events in Svelte - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743751734a2532777.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论