如何按订单链接href 3位置

时间:2013-06-15 09:42:00

标签: html hyperlink

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

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

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

1 个答案:

答案 0 :(得分:3)

Jquery解决方案,并正在使用 Demo

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');
 }
});
})();