Use of the link () method for processing strings in JavaScript
This article mainly introduces the use of The link () method for processing strings in JavaScript. It is the basic knowledge of JS beginners. For more information, see
This method creates an HTML hypertext link requesting another URL.
Syntax
?
1 |
String. link (hrefname) |
The following is the detailed information about the parameters:
Hrefname: Specifies the HREF flag for any string; it should be a valid URL
Return Value:
Returns a string tag.
Example:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<Html> <Head> <Title> JavaScript String link () Method </title> </Head> <Body> <Script type = "text/javascript"> Var str = new String ("Hello world "); Var URL = "http://www.yiibai.com "; Alert (str. link (URL )); </Script> </Body> </Html> |
This produces the following results:
?
1 |
<A href = "http://www.yiibai.com"> Hello world </a> |