是自动转换的,不用再处理
var param3 = $(document.ysjlmbSelectForm).serialize();
var param3 = $(document.ysjlmbSelectForm).serialize();
$.post("syysjldoc!getExistYsjldoc.do",param3,
function (info){
if(info.state == "1"){
$("#selExistDoc").find("option:selected").text("");
$("#selExistDoc").empty();
$('#selExistDoc').append("<option value='-1'>--无--</option>");
$.each(info.msg, function (i, n) {
$('#selExistDoc').append("<option value='" + n.s_ID + "'>" + n.s_title + "</option>");
});
$( "#cptmbSelectDialog" ).dialog( "open" );
}else{
$( "#cptmbSelectDialog" ).dialog( "open" );
}
},"json");