将 data-role="listview" 添加到此 html 时:
<ul id="mylinks" class="options" data-role="listview">
它打破了我的“for循环”。我用警报检查了“lis.length”,它仍然保存着数字值。我也在使用jquery mobile js。
为什么添加数据角色时我的“for循环”不起作用,我该如何解决这个问题。是否有运行此循环的替代方法。
<script type="text/javascript">
window.onload=function()
{
var ul = document.getElementById("mylinks");
var lis = ul.getElementsByTagName("li");
alert(lis.length);
var url = "http://" + window.location.host + "/mobile/";
var NEWurl = "http://www.sportingpulse.com/mobile/";
for( var i = 0; i < lis.length; i++ );
{
lis.item(i).childNodes[0].href = lis.item(i).childNodes[0].href.replace(url, NEWurl);
alert("working")
}
}
</script>