日期:2014-05-16 浏览次数:20428 次


$(function(){
    $.ajax({
        type: "post",
        dataType: "text",
        url: "hrmlpagecontrol.ashx?id=1",
        success: function(data) {
            $("#selectList").html(data);
            $("#btn_select").click(function() {
                var obj = $('#showselect div').map(function() {
                    return $(this).find('span').text() + ':' + $(this).find('label').text();
                }).get().join();
                $.ajax({
                    type: "post",
                    dataType: "text",
                    url: "responsesqlwhere.ashx?params=" + obj,
                    success: function(data) {
                        $("#showsqlwhere").html(data);
                    }
                });
                // alert(data);
            });
			$("#selectList").find(".more").toggle(function() {
				$(this).addClass("more_bg");
				$(".more-none").show()
			}, function() {
				$(this).removeClass("more_bg");
				$(".more-none").hide();      //这个地方,你都没有$符号。
			});
&nb