自定义控件-文本框获取焦点原创
2人赞赏了该文章
1,781次浏览
编辑于2021年06月08日 15:31:06
开发平台的文本框,在移动端中无法获取焦点,所以开发了一个自定义控件,在进入页面时,让当前文本框获取页面焦点。
原理是用js调用获取焦点的方法。
自定义控件方案,请查看附件。
本文章跳过前期创建页面,创建控件方案的步骤,如果想知道如果从零开始使用自定义控件,请参考其他文章:
https://vip.kingdee.com/article/150626162270913792
index.js
(function(KDApi) { function MyComponent(model) { this._setModel(model) } MyComponent.prototype = { _setModel: function(model) { this.model = model }, init: function(props) { setHtml(this.model, props) }, update: function(props) { setFocus() }, destoryed: function() {} } /* * 外部函数声明 */ var setHtml = function(model, props) { KDApi.getTemplateStringByFilePath('./html/text.html', model, {}) .then(function(result) { model.dom.innerHTML = result setFocus() }) } function setFocus() { var t = document.getElementById('textfof') if (t !== null) { document.getElementById('textfof').focus() } } KDApi.register('textfof', MyComponent) })(window.KDApi)
textfocus.zip(1.03KB)
赞 2
2人点赞
还没有人点赞,快来当第一个点赞的人吧!
打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!
推荐阅读