美文网首页
js 传参数

js 传参数

作者: 如果大雨落下 | 来源:发表于2021-07-02 11:07 被阅读0次

    https://blog.csdn.net/sjszscx/article/details/89066725

    <script>
                
                
                function updateUser(obj){
                    console.log(obj.name);
                };
                
                var tem = {name:'haha',go:'hehe'};
                updateUser(tem);
                
                var tem1 = {name:'haha1',go:'hehe1'};
                var s = [tem,tem1];
                var tem = JSON.stringify(s);
                var gos = JSON.parse(tem);
                $.each(gos,function(index,item){
                
                    var dela = "<button type=\"button\" class=\"btn btn-default\" onclick=\'updateUser("+ JSON.stringify(item) +");\'>修改</button>";
                    $("table").append("<tr>"+
                            "<td>"+item.name+"</td>"+
                            "<td>"+item.go+"</td>"+
                            "<td>"+dela+"</td>"
                            +"</tr>");
                
                });
                
                
            </script>
    

    相关文章

      网友评论

          本文标题:js 传参数

          本文链接:https://www.haomeiwen.com/subject/xmueultx.html