En son web geliştirme öğreticiler
 

JavaScript sicim link() Method

<JavaScript dize Referans

Örnek

Metin Ekran: "Free Web Building Tutorials!" Köprü olarak:

var str = "Free Web Building Tutorials!";
var result = str.link("http://www.w3ii.com");
Kendin dene "

Daha "Try it Yourself" Aşağıdaki örnekler.


Tanımı ve Kullanımı

link() metodu standart değildir ve tüm tarayıcılarda beklendiği gibi çalışmayabilir.

link() metodu bir köprü olarak bir dize görüntülemek için kullanılır.

Bu yöntem gömülü dize döndürür <a> böyle etiketi,:

<a href="url"> dize </a>


Tarayıcı Desteği

Yöntem
link() Evet Evet Evet Evet Evet

Sözdizimi

Parametre Değerleri
Parametre Açıklama
url Gereklidir. URL bağlamak

Teknik detaylar

Geri dönüş değeri: Gömülü bir dize <a> etiketi
JavaScript Versiyon: 1.0

Örnekler

Diğer Örnekler

Örnek

İlgili yöntemlerin bir gösteri:

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.w3ii.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
Kendin dene "

<JavaScript dize Referans