在网页中单击按钮10次的操作

时间:2016-02-20 04:08:28

标签: javascript html css html5 css3

我想在网站上创建链接类型的东西,在点击10次后打开另一个网页。有人请帮帮我。提前谢谢!

2 个答案:

答案 0 :(得分:1)

如果你的意思是只在点击10次后打开,我想你想创建一个“假”链接,触发一些JS功能,它跟踪一个正在运行的计数器。然后当计数器达到你的数字10时,触发window.open或你想要的任何窗口。

答案 1 :(得分:1)

你可以试试这个

var count = 1;
function myFunction() {
  if (count<10) {
    count++;
  }
  else {
    window.location = "your-target-page.html";
  }
};
<html>
<body>
  <button onclick="myFunction()">Click me 10 times</button>
</body>
</html>