如何在jquery mobile中添加'data-role =“content”'

时间:2012-04-25 20:10:43

标签: javascript jquery jquery-mobile

要在div下面更新:

    <div id="toadd" data-role="content">
        <p>Page 1 content</p>
                <ul data-role="listview" data-theme="g">
    <li><a href="bmw.html">BMW</a></li>
</ul>
    </div>

我正在使用:

  $(document).ready(function() {                   
          $("#toadd ul").append("<li><a href=\"acura.html\">tes</a></li>");
       }   
    });

问题是链接正在添加为标准href:

enter image description here

如何更新代码,以便'test'在附加图像中使用与'BMW'相同的jquery移动样式?

1 个答案:

答案 0 :(得分:1)

尝试$("#toadd ul").append("<li><a href=\"acura.html\">tes</a></li>").listview('refresh');

Check another post