当前位置: 代码迷 >> 移动开发 >> jquerymobile-10 替list添加数字气泡(count bubbles)
  详细解决方案

jquerymobile-10 替list添加数字气泡(count bubbles)

热度:1070   发布时间:2013-02-26 00:00:00.0
jquerymobile-10 为list添加数字气泡(count bubbles)

在项目中,我们一般使用list显示一个列表,如果这个列表还有子项的时候,有时候我们需要在上面加上子项的数目,这时候我们就可以使用jquerymobile提供的CSS类中的ui-li-count类实现这样的效果。一段例子代码如下:

<!DOCTYPE html><html><head><title>Count Bubble Example</title><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css" /><script src="http://code.jquery.com/jquery-1.7.1.min.js"></script><script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script></head><body><div data-role="page">	<div data-role="header">		<h1>My Header</h1>	</div>		<div data-role="content">		<ul data-role="listview" data-inset="true">		<li data-role="list-divider">Cookies Eaten</li>		<li>A <span class="ui-li-count">9</span></li>		<li>B <span class="ui-li-count">4</span></li>		<li>C <span class="ui-li-count">13</span></li>		<li>D <span class="ui-li-count">8</span></li>		</ul>	</div>	<div data-role="footer">		<h4>My Footer</h4>	</div>		</div></body></html>

我们只要添加一个span并且给起添加ui-li-count类就可以实现了。效果如下:


如果哪里写错了,还请指出。

  相关解决方案