JQueryEasyUI easyui-combobox 單擊文本區域顯示下拉菜單

//單擊內容框彈出下拉菜單
$(".combo").click(function (e) {
if (e.target.className == 'combo-text validatebox-text'){
if ($(this).prev().combobox("panel").is(":visible")) {
$(this).prev().combobox("hidePanel");
} else {
$(this).prev().combobox("showPanel");
}
}
});ide

相關文章
相關標籤/搜索