加载我的网格我在widget列中设置了tagfield
类型的一些默认值。对于我正在使用placeholder
的加载,但占位符在IE11中不起作用。任何身体都可以给一些解决方案。我也在我的解决方案中尝试过这种答案,但没有工作。
Placeholder CSS not being applied in IE 11 我的代码是:
var SValue = Obj.getAttribute('Val');
if(field.xtype == "tagfield"){
field.setValue(SValue);
field.inputEl.set({'placeholder':SValue});
}else{
field.setValue(SValue);
}
这在Chrome中工作正常,但在IE11中却没有。