jquery&easyui

$("select[name='employee.inauguration'] option[value='1']").attr("selected", true);//select选中

$("#positiveDate").datebox('setValue','');//清空值

//打开dialog
function openDialog(url,empName) {
    $('<div style="overflow-x:hidden"/>').dialog({
        title : empName,
        href : encodeURI(url),
        width : '1000',
        height : $(window).height(),
        minimizable: false,
        maximizable: false,
        resizable: true,
        modal : true,
        onClose : function() {
            $(this).dialog('destroy');
        }
    });
}
原文地址:https://www.cnblogs.com/yushouling/p/4910341.html