$(parent.document).find('#btnGo').click();

示例

$("input[type='submit']").click(function () {
             $("#txt_NextID").children().each(function () { $(this).attr("selected", "selected") });
             var val = $("#txt_NextID").val();
             if (val == null) {
                 alert("请选择送审对象!");
                 return false;
             }

相关文章