How to achieve a link can only be clicked once

Source: Internet
Author: User

Sometimes, you only want a link to a website to be clicked once. How can this problem be solved? The method in step 3 is provided below!
First:
Use js to change href to # And then empty the taget.

 

 <p><a onclick="var that = this;setTimeout(function(){that.removeAttribute('href');that.onclick=that=null;}, 0);return true;" href="http://www.g.cn" target="_blank">Open Google in New Window</a></p>

 

 

Open google in new window

Tip: you can modify some code before running it.

Second:
Use js to delete the href attribute after clicking to change the link to text. Compatible with IE6, IE7, IE8, Firefox, opera, Safari, chrome

 

 <p><a onclick="var that = this;setTimeout(function(){that.removeAttribute('href');that.onclick=that=null;}, 0);return true;" href="http://www.g.cn" target="_blank">Open Google in New Window</a></p>

 

 

Open google in new window

Tip: you can modify some code before running it.

Third:
Setting href and target values

 

 <p><a onclick="this._clk?(this.href='javascript:;',this.target='_self'):(this._clk=1);" href="http://www.google.cn" target="_blank">Open Google in New Window</a></p>

 

 

Open google in new window

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.