Turn: JS in javascript:void (0) True meaning

Source: Internet
Author: User

From:http://www.jb51.net/article/71532.htm

In JavaScript, Void is an operator that specifies that an expression is evaluated but does not return a value.

I'd like to use Ajax for all the usual code like this:

The code is as follows:

<a href= "Javascript:dotest2 (); void (0);" >here</a>

But what is the meaning of void (0) here?

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. (Implementation version Navigator 3.0)

You use the void operator to specify a hyperlink. The expression is evaluated but does not load any content at the current document.

The following code creates a hyperlink that will not happen to the user in the future. void (0) evaluates to 0 when the user links, but does not have any effect on Javascript.

The code is as follows:

<a href= "javascript:void (0)" > single here Nothing will happen </A>

The following code creates a hyperlink that submits the form when the user orders it.

The code is as follows:

<a href= "Javascript:void (Document.form.submit ())" > Submit form here </A>

A href= #与 a href=javascript:void (0) A few ways to link the difference

#包含了一个位置信息

The default anchor is #top, which is the upper end of the page

and javascript:void (0) only represents a dead link

That's why there are times when the page is very long browse the link is obviously # Yes

Jumping to the top of the page

and javascript:void (0) is not so

So it's best to use void when calling scripts (0)

or <input onclick>.

<div onclick>, etc.

Several ways to link

1.window.open (' url ')

2. Using Custom Functions

<script>

functionopenWin(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)">株洲</a>

window.location.href=""

The above content introduces JS in javascript:void (0) The true meaning, hope to everyone in the future work and study help.

Turn: JS in javascript:void (0) True meaning

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.