具有数据角色页面的链接列表项
我需要一些帮助,因为过去几天我尝试过,但我无法弄清楚。 我用循环创建不同的列表项。它具有以下格式:
<li><a href="page1"><h3>Page 1</h3><p>Open page 1</p></a></li>
因此您可以看到此页面有指向 page1 的 href,其他项目有指向 page2、page3 等的链接。
如何使用以下代码在不同页面中创建循环:
<div data-role="page1" id="page1">
<div data-role="content"><p>This is Page 1</p></div>
</div>
我想到了类似的事情,但这不起作用:
jQuery(function($) {
var b = $('body');
for(i=0; i<10; i++)
{
$('<div data-role="page1" id="page1"><div data-role="content"><p>This is Page '+i+'</p></div></div>').appendTo(b).page();
}
});
I need some help because the last couple of days I tried but I can't figure it out.
I create with a loop different list items. It has this format:
<li><a href="page1"><h3>Page 1</h3><p>Open page 1</p></a></li>
So you can see this page has a href to page1, the other items have links to page2, page3 ect.
How can I create with a loop in the different pages with this code:
<div data-role="page1" id="page1">
<div data-role="content"><p>This is Page 1</p></div>
</div>
I thought something like this but this isn't working:
jQuery(function($) {
var b = $('body');
for(i=0; i<10; i++)
{
$('<div data-role="page1" id="page1"><div data-role="content"><p>This is Page '+i+'</p></div></div>').appendTo(b).page();
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样
How about