在编辑结束写js
setTimeout(function() {
$("div[widgetname=COMBOBOX0] div.bi-bubble.bubble-error").css({"background-color":"#00000000","color": "#00000000"});
}, 1000)
这样么?
给控件添加编辑前事件 加入下面js
function myOnload() {
$(document).ready(function() {
$('.fr-combo-list-item').each(function(index) {
if (index==3) {//这里的3表示将最后一个设置成空
$(this).html("");
}
});
myOnload();