我用的vue,用了json-editor这个插件,我需要给textarea标签所有data-schemaformat="html"类型绑定focus事件,还有新添的textarea也要绑定
我用了queryselectorall addeventlistener 都不行
请问用原生的js怎么解决
请大家看好问题,html是json-editor插件生成的,我怎么来给所有的textarea包括心生成的textarea绑定onfocus
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
1.用MutationObserver监控DOM变化,有新添加的textarea则添加绑定(不兼容旧IE)
2.或者直接在父元素上绑定,通过判断target做对应处理
用onfocus吧。
http://www.w3school.com.cn/js...
onfocus事件
加入到你的html中
editor.on('fouse',function() {
// Do something
});
就这么干!