一種json生成html的思路


輸入:

[{
    tag:"ul",
    attribute:{
        class:"father6"
    },
    property:{
        className:"father"
    },
    children:[
    {
        tag:"li",
        attribute:{
            class:"son"
        }
    },
    {
        tag:"li",
        class:"son",
        children:[{
            tag:"a",
            attribute:{
                class:"son-a",
                href:"http://www.google.com"
            },
            property:{
                innerText:"跳轉到google"
            }
            
        }]
    }]
}]

輸出:

<ul class="father">
    <li class="son"></li>
    <li class="son">
        <a class="son-a" href="http://www.google.com">跳轉到google</a>
    </li>
</ul>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM