The link method returns the (italic) string that is defined using the HTML a label property. The syntax is as follows:
Copy Code code as follows:
Parameter description:
Parameters |
Description |
Str_object |
The string to manipulate (object) |
Url |
Necessary. String to link to the URL address, full format. |
Tip: This method does not conform to the ECMA standard and is not recommended for use.
Link Method Instance
Copy Code code as follows:
<script language= "JavaScript" >
var str = "Www.jb51.net";
document.write (Str.link ("http://www.jb51.net"));
</script>
Run the example and output:
Copy Code code as follows:
Tip: This method returns the hyperlink string defined using the HTML a label, which means that the string cannot be changed directly to a hyperlink string. If you want to dynamically change the element font to a hyperlink string, you can extend the link method by referring to the following example:
Change the page element font to a hyperlink
Copy Code code as follows:
<script language= "JavaScript" >
function Addurl (obj) {
obj.innerhtml = Obj.innerHTML.link ("http://www.jb51.net");
}
</script>
<body>
<p ondblclick= "Addurl (this);" >
Www.jb51.net
</p>
</body>
In this example, you can use the mouse to double-click the string www.jb51.net to add a hyperlink to it.