我正在使用jQuery移动自动建议插件。我需要从自动建议列表中获取所选值并将其用于其他功能。
这是我的代码:
<div data-role="content">
<ul data-role="listview" data-filter="true" id="customer">
<li class="ui-screen-hidden" ><a href="1">BMW</a></li>
<li class="ui-screen-hidden" ><a href="2">Mercedez</a></li>
<li class="ui-screen-hidden" ><a href="3">Ciat</a></li>
</ul>
</div>
function getItem() {
//Here i want to get the selected item from list
//Like value of option "BMW" is "1" I want to get that 1 value
}
答案 0 :(得分:1)
您可以通过附加并单击处理程序获取单击的元素,并获取内部锚点href。
代码:
$(document).on("pagecreate", "#mypage", function () {
$(document).on("click", "#customer li", function (e) {
alert($(this).text() +" - " + $(this).find('a').attr('href'))
e.preventDefault();
});
});