$,ajxa动态获取数据表格显示

来源:互联网 发布:linux安装telnet 编辑:程序博客网 时间:2024/05/21 11:30
$(function(){        $.ajax({            type:'post',            url:'/prdeft-web/appDeviceCard/getDeviceLists',            data:{'sgId':1724},            success:function(result){                /* alert("hello word"); */                var table_device_html="";                for(var i=0;i<result.length;i++){                table_device_html=table_device_html                    +'<tr><td>'+'<input type="checkbox" />'                    +'</td><td>'+result[i].deviceCode                    +'</td><td>'+result[i].deviceName                    +'</td><td>'+result[i].deviceProperty                    +'</td><td>'+result[i].state                    +'</td><td>'                    +'</td><td>'                    +'</td><td>'                    +'</td><td>'                    +'</td></tr>'                }                $("#table_device_html").html(table_device_html);            },                error:function(){                    alert("error");                }        })})

0 0