content.find('#base_set_panel_name').keypress(function(e){
return ($.inArray(e.charCode || e.keyCode, [126, 96, 33, 64, 35, 36, 37, 94, 38, 42, 40, 41, 43, 61, 124, 92, 123, 91, 125, 93, 34, 39, 58, 59, 63, 47, 62, 60, 44, 46]) >= 0) ? false : true;
}).bind('paste', function(e) {
var text = this;
setTimeout(function() {
text.value = text.value || '';
//删除特殊字符
text.value = text.value.replace(/[~`,!@#$%^&*()+=|\\:;\'"\?/><,.]+/gi, '');
//IE下粘贴后不能自动触发change事件,这里要手动触发一下
if (document.attachEvent) {
content.find('#base_set_panel_name').change();
}
}, 100);
});
return ($.inArray(e.charCode || e.keyCode, [126, 96, 33, 64, 35, 36, 37, 94, 38, 42, 40, 41, 43, 61, 124, 92, 123, 91, 125, 93, 34, 39, 58, 59, 63, 47, 62, 60, 44, 46]) >= 0) ? false : true;
}).bind('paste', function(e) {
var text = this;
setTimeout(function() {
text.value = text.value || '';
//删除特殊字符
text.value = text.value.replace(/[~`,!@#$%^&*()+=|\\:;\'"\?/><,.]+/gi, '');
//IE下粘贴后不能自动触发change事件,这里要手动触发一下
if (document.attachEvent) {
content.find('#base_set_panel_name').change();
}
}, 100);
});