xinyb
2024-09-19 18ffbca9acaccd5099a7a63652f52210f59a7e40
1
2
3
4
5
6
7
8
9
10
$(function(){
    $("#tpQuery").click(function(){
        var rand=Math.round(Math.random()*1000000);
        showWindow("/general/query.jsp?formId="+formId+"&rand="+rand,"",function(t){
            if(t){
                create(encodeText(t));
            }
        },{dialogWidth:498,dialogHeight:367,resizable:0});
    });
});