JS高手们请进来,javascript添加标签的问题!

在网上搜到一个小程序,很好用,但美中不足的是不能限制添加的数量,哪位高手给改一下,

目的:快速添加标签,但是只能添加5个标签!

高手帮帮忙!

程序:

<!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>
<meta http-equiv="Content-Type" content="text/html; cha rset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
a.blue:link,a.blue:visited{
font-size: 12px;
color: #69c;
text-decoration: none;
}
a.blue:hover{
background: #69c;
color: #fff;
}
</style>
<script type="text/javascript">
function fInsert(a,b){
oInput = document.getElementById(a);
oItm = b;
// alert(b.style.backgroundColor);
if((b.style.backgroundColor == "#6699cc")||(b.style.backgroundColor)){
sReplace = oItm.innerHTML.concat(" ");
oInput.value = oInput.value.replace(sReplace,"");
b.style.backgroundColor = "";
b.style.color = "";
}
else{
oInput.value = oInput.value.concat(oItm.innerHTML);
oInput.value = oInput.value.concat(" ");
b.style.backgroundColor = "#69c";
b.style.color = "#fff";
}
}
</script>
</head>
<body>
<input type="text" id="cc" style=" width: 300px;" />
<a href="javascript:void(0 target=_blank);" class="blue" onclick="fInsert(’cc’,this);">关键字</a> <a href="javascript:void(0 target=_blank);" class="blue" onclick="fInsert(’cc’,this);">关键字2</a> <a href="javascript:void(0 target=_blank);" class="blue" onclick="fInsert(’cc’,this);">关键字3</a>
</body>
</html>
高手帮帮忙啊!

第1个回答  推荐于2016-06-04
代码如下,只能输入五个,请运行检测
<!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>
<meta http-equiv="Content-Type" content="text/html; cha rset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
a.blue:link,a.blue:visited{
font-size: 12px;
color: #69c;
text-decoration: none;
}
a.blue:hover{
background: #69c;
color: #fff;
}
</style>
<script type="text/javascript">
var num = 0;
function fInsert(a,b){
oInput = document.getElementById(a);
oItm = b;
// alert(b.style.backgroundColor);
if((b.style.backgroundColor == "#6699cc")||(b.style.backgroundColor)){
sReplace = oItm.innerHTML.concat(" ");
oInput.value = oInput.value.replace(sReplace,"");
b.style.backgroundColor = "";
b.style.color = "";
num--;
}else{
num++;
if(num>5){
num--;
return;
}
oInput.value = oInput.value.concat(oItm.innerHTML);
oInput.value = oInput.value.concat(" ");
b.style.backgroundColor = "#69c";
b.style.color = "#fff";

}
}
</script>
</head>
<body>
<input type="text" id="cc" style=" width: 300px;" />
<a href="javascript:void(0);" class="blue" onclick="fInsert('cc',this);">关键字</a> <a href="javascript:void(0);" class="blue" onclick="fInsert('cc',this);">关键字2</a> <a href="javascript:void(0);" class="blue" onclick="fInsert('cc',this);">关键字3</a> <a href="javascript:void(0);" class="blue" onclick="fInsert('cc',this);">关键字4</a> <a href="javascript:void(0);" class="blue" onclick="fInsert('cc',this);">关键字5</a> <a href="javascript:void(0);" class="blue" onclick="fInsert('cc',this);">关键字6</a>
</body>
</html>本回答被提问者采纳

高手们请进来帮忙分析一下有关于DT加点的问题!
停69就5力加,升上去的话就0.5T4.5力 0.5耐4.5力或是1敏4力,现在高级DT也要生存了,没生存的高级DT基本没人要,至于怎么加,看个人爱好。

请教:EXCEL 连减的问题,高手们请进来
输入: =A1-sum(用鼠标拉要减的部分就可以了) 最后回车 此为你的第一个公式 原理就是:用A1减去后面几个单元格之和

一些关于游戏王的问题~高手们请进来指点我!
问题1:可以的,因为乌鸦三角阵是当场有三只名字里带有黑羽的怪兽存在的场合才能从手里发动。而你已经满足条件所以发动了,这时就算场上的黑羽怪兽全部破坏乌鸦三角阵的效果还是在的,除非他正对你的乌鸦三角阵进行陷阱反击是起无效不然就算乌鸦三角阵被破坏效果还是有的。问题2:不行。首先绝对零度侠是不...

高手们请进来帮帮小弟解决DNF进频道一直连接服务器状态问题
是不是迅雷开着呢,呵呵,你用360流量监控看看,是不是存在占流量的其他程序,如果不是的话,你随便先进一个电信区,不一定非要是广西的,只要是电信的都可以试试,如果能进去的话,你再换过来,再换到广西一区,你先试一下吧

关于爱普生彩色打印机的问题,非常着急!!高手们请进来帮帮我!!!
红灯亮, 一般说明没墨水了..或者打印机需要清零了.你可以检查一下墨盒是否没水,,一般感觉一下重量..或者下载一个清零软件,给打印机清零一下即可.

相似回答