jquery mobile中使用css去掉listview中的icon

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

<!DOCTYPE html> 
<html> 
    <head> 
        <title>Slider Stop</title> 
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
	<style type="text/css">
	.ui-listview .ui-icon-arrow-r {
    background: transparent url(images/arrow_right.png) center center no-repeat !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;}
	</style>
     </head>
	 <body>
	 <div data-role="page">

	  <ul class="ullist" data-role="listview">
                    <li><a>All</a></li>
                    <li><a>All</a></li>
					<li><a>All</a></li>
				    <li><a>All</a></li>
					<li><a>All</a></li>
                </ul>
	 </div>

	 </body>
	 </html>