متد link
مثال (متد link)
Display the text: "Free Web Building Tutorials!" as a hyperlink:
var str = "Free Web Building Tutorials!";
var result = str.link("http://www.w3schools.com");
var result = str.link("http://www.w3schools.com");
خودتان امتحان کنید »
در انتهای این صفحه، مثال های بیشتری آورده شده است.
تعریف و کاربرد
The link() method is not standard, and may not work as expected in all browsers.
The link() method is used to display a string as a hyperlink.
This method returns the string embedded in the <a> tag, like this:
<a href="/url">string</a>
پشتیبانی مرورگرها
متد | |||||
---|---|---|---|---|---|
link() | بله | بله | بله | بله | بله |
نحوه استفاده
string.link("url")
مقادیر پارامترها
پارامتر | توضیحات |
---|---|
url | Required. The URL to link to |
جزئیات تکنیکی
مقدار برگشتی | A string embedded in the <a> tag |
---|---|
نسخه JavaScript | 1.0 |
مثال - خودتان امتحان کنید
مثال (متد link)
A demonstration of related methods:
var txt = "Hello World!";
document.write("The original string: " + txt);
document.write("<p>Big: " + txt.big() + "</p>");
document.write("<p>Small: " + txt.small() + "</p>");
document.write("<p>Bold: " + txt.bold() + "</p>");
document.write("<p>Italic: " + txt.italics() + "</p>");
document.write("<p>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike: " + txt.strike() + "</p>");
document.write("<p>Fontcolor: " + txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " + txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() + "</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3schools.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
document.write("The original string: " + txt);
document.write("<p>Big: " + txt.big() + "</p>");
document.write("<p>Small: " + txt.small() + "</p>");
document.write("<p>Bold: " + txt.bold() + "</p>");
document.write("<p>Italic: " + txt.italics() + "</p>");
document.write("<p>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike: " + txt.strike() + "</p>");
document.write("<p>Fontcolor: " + txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " + txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() + "</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3schools.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
خودتان امتحان کنید »
- نوشته شده توسط امیر پهلوان صادق
- بازدید: 6417