<body>
<table>
<tr id="tr1"><td><input type="checkbox" name="check1" onclick="checkStr(this,1)" ></td><td>id1</td><td>lang1</td><td>lat1</td></tr>
<tr id="tr2"><td><input type="checkbox" name="check2" onclick="checkStr(this,2)" ></td><td>id2</td><td>lang2</td><td>lat2</td></tr>
<tr id="tr3"><td><input type="checkbox" name="check3" onclick="checkStr(this,3)" ></td><td>id3</td><td>lang3</td><td>lat3</td></tr>
<tr id="tr4"><td><input type="checkbox" name="check4" onclick="checkStr(this,4)" ></td><td>id4</td><td>lang4</td><td>lat4</td></tr>
</table>
</body>
<script>
function checkStr(obj,id){
if(objchecked){
var a=$("#tr"+id+" td:gt(1)");
for(var i =0; i<=alength-1; i++){
consolelog(a[i]innerText);
}
}
}
</script>
你好,如下图:
祝愉快!
变量赋值的格式:
变量名=值
访问变量值
要取用一个变量的值,只需在变量名前面加一个$ 。
( ATTENTION: Don't keep blank between the variable with the equal operator '=' )
举例:
#!/bin/bash
# 对变量赋值:
a="hello world" #等号两边均不能有空格存在
# 打印变量a的值:
echo -e "A is: $a\n"
备注:
1) bash中变量赋值,等号两边均不能有空格存在;
使用自己喜欢的编辑器,输入上述内容,并保存为文件test_hellobsh,然后执行 chmod +x test_hellobsh使其具有执行权限,最后输入 /test_hello或bash test_hellobsh执行该脚本。
参考资料
编程之给变量赋值的五种方法个人图书馆[引用时间2018-1-5]
分别使用javascript原生的方法和jquery方法
<select id="test" name="">
<option value="1">text1</option>
<option value="2">text2</option>
</select>
code:
一:javascript原生的方法
1:拿到select对象: var myselect=documentgetElementById("test");
2:拿到选中项的索引:var index=myselectselectedIndex ; // selectedIndex代表的是你所选中项的index
3:拿到选中项options的value: myselectoptions[index]value;
4:拿到选中项options的text: myselectoptions[index]text;
二:jquery方法(前提是已经加载了jquery库)
1:var options=$("#test option:selected"); //获取选中的项
2:alert(optionsval()); //拿到选中项的值
3:alert(optionstext()); //拿到选中项的文本
以上就是关于使用jQuery获取选中checkbook的那一行的最后两列lng和lat的值。全部的内容,包括:使用jQuery获取选中checkbook的那一行的最后两列lng和lat的值。、jquery怎么给label赋值、如何获取下拉列表选中的值 jquery等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)