我需要突出显示文本区域中的部分文本。我已经看到它是用 jquery 完成的,但我不能使用 jquery,因为我正在开发的应用程序已经使用了 extjs(textarea 只是应用程序的一小部分)。这是 jquery 示例的链接:http: //www.strangeplanet.fr/work/jquery-highlighttextarea/我正在使用 extjs 2.3.0
message 是 Extjs Textarea,我正在尝试突出显示文本。
var message = new Ext.form.TextArea({
hideLabel: true,
id: 'smshl',
name : 'smshl',
emptyText: 'enter message here',
anchor: '90%',
allowBlank: false,
style:'overflow:hidden;style:margin:15px;',
height: 90,
minLength: 1,
minLengthText: 'You cannot send a blank text',
maxLength: userObj.smsLength,
maxLengthText: 'Sorry, Maximum length of message exceeded',
preventScrollbars: true,
enableKeyEvents: true,
listeners:{
keyup: function() {
this.highlightTextarea({
words: ["first word","another word"]
});
}
}
})