页面内容是这样的:
<input name="test1" value="a"/>
<input name="test2" value="b"/>
<input name="test3" value="c"/>
要求就是获得 一个数组,里面装着所有test*的值.
我的思路是这样的
我选择用jquery 选择器 选择name以test开头的input
现在是获取了的,但是我想让它直接返回input.value的数组,有好办法么?
下面是我写的,还要从新定义数组,以及for循环,太麻烦了.
var test = $("input[name^='test']");
var arr = new Array();
for(var i=0;i<test.length;i++){
arr[i] = test[i].value;
}
PS:我试着 用$("input[name^='test']").val();但是返回的却只是第一个值.
但是我觉得这样很麻烦,不知道有没有更简单的办法呢?
------解决方案--------------------
jquery貌似没有这样的
------解决方案--------------------
<!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>jQuery</title>
<script language="javascript" type="text/javascript"
src="Jscript/jquery-1.4.2.min.js"></script>
<style type="text/css">
body{font-size:12px;text-align:left}
div{float:left;border:solid 1px #ccc;margin:8px;width:100px;height:65px;}
span{float:left;border:solid 1px #ccc;margin:8px;width:45px;height:45px;background-color:#eee}
</style>
<script type="text/javascript">
function changeCSS(){
$("input[name*='test']").val("name包含'test'的").css("background-color","blue");