87,992
社区成员
发帖
与我相关
我的任务
分享<input class="easyui-combobox" id="tagValueScopeType" panelHeight="auto" valueField="id" textField="text">$('#tagValueScopeType').combobox({
valueField : 'id',
textField : 'text',
data : eleData,
editable : false,
panelHeight : 200,
onChange : function(newValue, oldValue) {
if (isSingleValue(newValue)) {
$('#tagTopValueTr').css('display', 'none');
$('#tagValueSpan').html('标签限制值<span style="color:red;font-family:\'宋体\';">*</span>');
} else {
$('#tagTopValueTr').css('display', '');
$('#tagValueSpan').html('标签下限值<span style="color:red;font-family:\'宋体\';">*</span>');
}
}
});