首页 > 代码库 > 仿jquery mobile中的select控件效果

仿jquery mobile中的select控件效果

不说废话,直接上代码,最好将on.png和off.png也使用jquery mobile里的图片
//仿jQuery mobile Select控件
//用法box为容器id,_id指控件id,selectvalue为选中值,Value为当前值
function SelectBox(box,_id,selectvalue,Value)
{
	if(Value != selectvalue)
	{
		$("#" + box).html("<input type=hidden value=http://www.mamicode.com/'" + Value + "' id='" + _id + "'>");>

 

使用方法:

 

<span id="q"></span>
<script type="text/javascript">
CheckBox("q","a",1,0);
</script>