Javascript:void (0)

Source: Internet
Author: User

In JavaScript, Void is an operator that specifies that an expression is evaluated but does not return a value. The void operator uses the following format:
1. javascript:void (expression)
2. Javascript:void expression
Expression is a standard of Javascript to evaluate. Parentheses on the outside of the expression are optional, but writing is a good habit. Use the void operator to specify a hyperlink. The expression is evaluated but does not load anything at the current document.
<a href= "javascript:void (0)" > single here Nothing will happen </A>
<a href= "Javascript:void (Document.form.submit ())" > Submit form here </A>
The difference between a href= #与 a href=javascript:void (0)
Several ways to link
#包含了一个位置信息默认的锚是 #top, which is the upper end of the Web page and avascript:void (0) only represents a dead link which is why sometimes the link is a # but it jumps to the top of the page and javascript:void (0) is not so, So it's best to use void (0) or <input onclick> when invoking the script.

Several ways to link
1.window.open (' url ')
2. Using Custom Functions
<script>
function Openwin (tag,obj)
{
Obj.target= "_blank";
Obj.href = "web/substation/substation.aspx?stationno=" +tag;
Obj.click ();
}
</script>
<a href= "javascript:void (0)" onclick= "Openwin (3,this)" > Zhuzhou </a>
Window.location.href= ""

Javascript:void (0)

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.