码迷,mamicode.com
首页 > Web开发 > 详细

jquery 应用小结

时间:2016-04-30 15:29:33      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="jquery-1.4.4.js" type="text/javascript"></script>
<script type="text/javascript">

$().ready(
function()
{

$("#btn").bind("click",function()
{
var arr=new Array();
$("input[name=‘ck1‘]:checked").each( function(){

arr.push($(this).val());
});
//array.push($(this).val());

alert(arr.join(‘,‘));

//alert("ok");

for(var i=0;i<arr.length;i++)
{
alert(arr[i]);

}
}

)

}


)

 

</script>

</head>
<body>
<input type="checkbox" name="ck1" id="1c" value=‘1‘>1</input>
<input type="checkbox" name="ck1" id="2c" value=‘2‘>2</input>
<input type="checkbox" name="ck1" id="3c" value=‘3‘>3</input>

<input type="checkbox" name="ck1" id="4c" value=‘4‘>4</input>
<input type="checkbox" name="ck1" id="5c" value=‘5‘>5</input>
<input type="checkbox" name="ck1" id="6c" value=‘6‘>6</input>

<input type="button" id="btn" value="提交"/>
</body>
</html>

jquery 应用小结

标签:

原文地址:http://www.cnblogs.com/chengjun/p/5448715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!