Introduction to void operator syntax and usage in javascript

Source: Internet
Author: User

Void is an operator in javascript. The syntax is as follows:
Javascript: void (expression)
Javascript: void expression
Void calculates the value of the expression, but discards the return value of the expression.
This expression is often used to convert a link into a dead link:
Copy codeThe Code is as follows:
<A href = "javascript: void (0)" onclick = "func ()"> click me </a>

When you click this link, The onclick function is executed instead of the address jump.
The following method can also achieve the same result
Copy codeThe Code is as follows:
<A href = "#" onclick = "func (); return false;"> click me </a>

However, "#" contains a location information, which is returned to the top of the webpage by default. To avoid this situation, you can add a return false statement in The onclick statement.

Related Article

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.