0

在 extjs 3.4 中使用带有 beforequery 函数的过滤器时,我遇到了 IE6 的问题,这是我的代码。

this.findById('field1').addListener({
        beforequery: function(e) {
            var metadataStep = Ext.getCmp('step2');
            if (e.query && e.query.indexOf('?') != -1) {
                var temp = '';
                for(var i=0;i<e.query.length;i++){
                    temp = temp + '['+e.query[i]+ ']';
                }
                e.cancel = true;
                var query = new RegExp(String.format('^{0}',temp.replace(/\?/g, 'a-zA-Z0-9\-\.,:\+\*\(\)=\'&_')));
                if (combo.store.getCount() > 0 || combo.listEmptyText) {
                    combo.expand();
                    combo.restrictHeight();
                }
                this.store.clearFilter(true);
                this.store.filter(this.displayField, query);
            }
        }
    });

注意:它在 ff 和 Chrome 中工作

1.我在 IE6 中查询为/^[undefined]/。

2.但在Chrome和FF查询= /^[a-zA-Z0-9-.,:+*()='&_]/

非常感谢任何帮助。

提前致谢,

拉吉

4

1 回答 1

0
if (e.query && e.query.indexOf('?') != -1) {
    e.query = String.format('^{0}', e.query.replace(/\+/g, '[\+]'));
    e.query = String.format('^{0}', e.query.replace(/\(/g, '[\\(]'));
    e.query = String.format('^{0}', e.query.replace(/\)/g, '[\\)]'));
    e.query = String.format('^{0}', e.query.replace(/\*/g, '[\*]'));
    e.query = String.format('^{0}', e.query.replace(/\./g, '[.]'));
    e.cancel = true;
    var query = new RegExp(String.format('^{0}',e.query.replace(/\?/g, '[a-zA-Z0-9\-\.,:\+\*\(\)=\'&_]')));
    if (combo.store.getCount() > 0 || combo.listEmptyText) {
        combo.expand();
        combo.restrictHeight();
    }
    combo.store.clearFilter(true);
    combo.store.filter(combo.displayField, query);
   }

此代码工作正常。在 IE6 中,数组不起作用。

于 2012-04-17T05:12:52.417 回答