jQuery 移动中的列表

发布于 2024-11-01 23:59:06 字数 591 浏览 1 评论 0原文

我想在列表中添加链接,但我正在动态创建列表。当我单击列表项时,它会显示详细视图。例如

在此处输入图像描述

当我单击土地结束时,它会转到土地的详细信息,然后我单击优惠券,它会转到特定的页面,但我想设置一个保存和电子邮件链接,然后我想放置该图像中的名称?

listItem.innerHTML = "<img src='" + image + "' class='ui-li-icon' style='height:20px; width:20px;'></img> <a href='#'  data-role='button' id='" + i + "' data-theme ='c' rel='external' data-inline='true' style='margin-left:1.5em; margin-top:2px;' ><font size='2' face='Arial, Helvetica, sans-serif'>" + prodName[i] + "</font></a>";

I want to add a link in List but I'm creating list dynamically. When I click the list item, it display the detail view. For example

enter image description here

When I click land end it goes to detail of lands then I click coupon ,it goes to particular page, but I want set a link for save and email then I want to place the name which is in that image?

listItem.innerHTML = "<img src='" + image + "' class='ui-li-icon' style='height:20px; width:20px;'></img> <a href='#'  data-role='button' id='" + i + "' data-theme ='c' rel='external' data-inline='true' style='margin-left:1.5em; margin-top:2px;' ><font size='2' face='Arial, Helvetica, sans-serif'>" + prodName[i] + "</font></a>";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眸中客 2024-11-08 23:59:06

您无法执行位于 ajax 检索页面上的 javascript,因为 jquery mobile 不是为此目的而设计的,但您可以使用它的事件系统来帮助您 http://jquerymobile.com/demos/1.0a4.1/docs/api/events.html

You can not execute javascript that are placed on the ajax retrieved pages, as jquery mobile is not designed for that purpose, but you can use it's event system that will help you http://jquerymobile.com/demos/1.0a4.1/docs/api/events.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文