码迷,mamicode.com
首页 > 编程语言 > 详细

js数组中indesOf方法的使用

时间:2015-09-18 18:15:43      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>
	<title>数组的操作</title>
	<script type="text/javascript">
	


	function B(){
		var names=["zhangsan","lisi","wangwu"];
		
		var name=document.getElementById("name").value;
		var position = names.indexOf(name);
		alert(position);
		if (position >=0) {
			alert("find"+name+"at position"+position);
		}else {
			alert("not find"+name);
		}



	}

	</script>
</head>
<body>
<input type="text" name="name" id="name">
<input type="button" value="dian" onclick="B();">

</body>
</html>

  

js数组中indesOf方法的使用

标签:

原文地址:http://www.cnblogs.com/airycode/p/4819742.html

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