我的思路是:循环比较取出相同的字符,如果相同则次数自加。但是不知道哪里错了。现在的运行结果是每个字符出现的次数的累加和。。。
代码如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="http://yancy.cachepro.com/jq/JQ214.js"></script>
<script>
$(document).ready(function(){
$("#button").click(function(){
var a = $("#input").val();
var l = a.length;
var count = 0, temp = 0;
for(var i=0; i<l; i++){
for(var n=0;n<l;n++){
if(a.charAt(n) == a.charAt(i)){
temp++;
}
}
if(temp > count){
count = temp;
}
};
alert (temp);
})
})
</script>
</head>
<body>
<input id="input" />
<button id="button">获取</button>
</body>
</html>
把中间的部分换成下面这样,原因是每次循环的时候temp没有初始化,另外最后alert的应该是count吧...