我的玉! https://lh4.googleusercontent.com/-hzRqciA1Tjs/UGmc39ijHuI/AAAAAAAAAFk/0XJzY0ZqU70/s720/App.jpg
div(data-role='content')
div(class='content-primary')
ul(data-role="listview", data-split-theme='a',data-split-icon='gear')
li(data-theme='a')
a(href="")
div(id='addClientDivId')
a(href='#', data-icon='delete', title=' Delete ')
我想使用 jquery 动态生成上面的翡翠内容。谁能帮我..???
由于我没有声誉,我已将图像截图上传到 picasa。请参阅截图。我已经尝试了下面给出的所有可能性,但无法获得截图上的效果。
回答:
我找到了我的查询的解决方案。
var newContent = '<div data-role="content" data-theme="a" class="content-primary">';
newContent += '<ul data-role="listview" data-split-theme="a" data-inset="true" id="ulId">';
newContent += '<li>';
newContent += '<a href="">';
newContent += '<h4></h4>';
newContent += '<h5></h5>';
newContent += '<a href="" , data-icon="delete">';
newContent += '</a>';
newContent += '</a>';
newContent += '</li>';
newContent += '</ul>';
newContent += '</div>';
$("#addClientDivId").append(newContent).trigger('create');