gpt4 book ai didi

javascript - Ext Js 添加事件到 html 元素

转载 作者:行者123 更新时间:2023-12-03 07:39:45 26 4
gpt4 key购买 nike

如何将 onChange 事件添加到在另一个组件内呈现的 html 元素

  xtype: 'component',
html: {
html: '<input type= "color" />'
},
itemId: 'colorPicker'
},

我想将以下事件监听器添加到输入元素:

   theInput.addEventListener("input", function() {

<<Do something with theColor value here>>

}, false);

最佳答案

在您的情况下,代码是这样的:

html: '<input id=\'colorPickerBackground\' type=\'color\'></input>',
listeners: {
afterrender: function(component) {
var colorInput = component.getEl().down('#colorPickerBackground');
colorInput.on('input', function() {
console.log(colorInput.getValue());
});
}
}

Simple fiddle

关于javascript - Ext Js 添加事件到 html 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35457707/

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