apprat / sober

Material You Design Web Component UI Library
https://soberjs.com
MIT License
50 stars 4 forks source link

dialog确定按钮怎么阻止窗口关闭? #4

Closed itpleb closed 4 months ago

itpleb commented 4 months ago

在dialog里放表单,储存时,如果失败不想关窗口,怎么控制?

apprat commented 4 months ago

你需要阻止Button的click事件冒泡。

button.addEventListener('click',(e)=>{
    e.stopPropagation()
})