作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须将点击事件添加到动态 ListView 。当我单击此列表时,它会重定向到更多详细信息页面。我正在获取特定区域可用的酒店列表并将其插入 ListView 中。现在,当我单击任何特定列表酒店时,都会重定向到更多详细信息页面。
检查以下可用酒店列表的图像 ListView 。每家酒店都有唯一的 ID,因此当我单击任何列表时,它将使用该唯一的酒店 ID,并从服务器获取该酒店的更多详细信息,并显示在该特定酒店的专用页面上。 我的问题是如何在动态 ListView 上添加点击并传递唯一的酒店 ID,以便稍后我能够使用该酒店 ID 从服务器获取更多信息。
我的脚本代码,如何在动态列表中添加点击
<script>
$(document).ready(function(){
$("#btnReg").click(function(){
$("#listHotelsOptions").empty();
var distance = document.getElementById('distance_id').value;
var output="";
var hiddenId="";
$.ajax({
url:"http://192.168.1.4/Experiements/webservices/getHotels.php",
type:"GET",
dataType:"json",
data:{type:"login", Distance:distance},
ContentType:"application/json",
success: function(response){
console.log(response)
$.each(response, function(index,value){
hiddenId+='<li type="hidden">'+value.Hotel.Id+'</li>';
output+='<li ><a href="#" style="text-decoration:none;"> <img alt="chef" src="./images/chef.min.png" width="20px" height="20px" >'+value.Hotel.Name+' has'+value.Hotel.Romms+'</a></li>';
});
$("#listHotelsOption").append(output).listview().listview('refresh');
},
error: function(err){
alert(JSON.stringify(err));
}
}) //ajax
}); //click
}); //ready
</script>
最佳答案
将酒店 ID 保存为 data-attribute,而不是 2 个 LI 元素。可见 LI 的 :
$.each(response, function(index,value){
output+='<li data-hotelid="'+value.Hotel.Id+'"><a href="#" style="text-decoration:none;"> <img alt="chef" src="./images/chef.min.png" width="20px" height="20px" >'+value.Hotel.Name+' has'+value.Hotel.Romms+'</a></li>';
});
您应该使用页面事件之一,例如 pagecreate,而不是 jQuery Mobile 中的 $(document).ready(function(){
。在页面创建时,使用 为所有 LI 创建一个点击处理程序> event delegation ,以便包含动态创建的。使用 jQM 方法 jqmData() 从 LI 检索 id 数据属性:
$(document).on("pagecreate", "#yourpageid", function(){
$("#listHotelsOption").on("click", "li", function(){
//get hotel id
var id = $(this).jqmData("hotelid");
... rest of click handler
});
$("#btnReg").on("click", function(){
//your code to dynamically create list
});
});
Here is a working DEMO
关于javascript - 如何在PhoneGap中添加点击事件到动态 ListView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27833594/
我是一名优秀的程序员,十分优秀!