我正在使用 jquery mobile 制作 phonegap 应用程序。我在 listview 中遇到问题。如果我有几个项目已经在列表视图中并且我正在添加更多项目,那么我想在列表视图中添加的项目具有不同的样式。如何在之前和之后添加的两个列表项上添加相同的样式。谢谢。
<html>
<head>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
<script src="js/jquery.js"></script>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
alert("hello");
$('#employeeList').append('<li data-icon=delete >hello</li>');
$('#employeeList').append('<li><a>hello</a></li>');
$('#employeeList').append('<li><a>hello</a></li>');
});
</script>
</head>
<body>
<div data-role=page id=home>
<div data-role=header>
<h1>Home</h1>
</div>
<div data-role=listview>
<ul id="employeeList" class="icon-list"></ul>
<li>dfsfdfdsf</li>
<li>dfsfdfdsf</li>
<li>dfsfdfdsf</li>
</div>
<div data-role=footer data-position="fixed">
<h1 >Thanks</h1>
</div>
</div>
</body>