0
<a href=/01.html>BUTTON</a>

我有一个按钮,它现在链接到 01.html。

我想链接另一个页面(02.html,03.html)以便 BUTTON。可能吗?

4

1 回答 1

3

Jquery 解决方案和工作演示

var countClick= 0;
(function () {
 $('#link').click(function () {
 countClick++;
 if (countClick == 1) {
  window.open("http://google.com", '_blank');
 }
 if (countClick == 2) {
  window.open("http://stackoverflow.com/", '_blank');
 }
 if (countClick == 3) {
 window.open("http://yahoo.com/", '_blank');
 }
});
})();
于 2013-06-15T10:01:26.987 回答