JavaScript Tutorial/String/bold

Материал из Web эксперт
Версия от 18:52, 25 мая 2010; (обсуждение)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

string.bold()

The bold() method converts the string to an instance of the <bold> tag.



<html>  
    <script language="JavaScript">
    <!--
    var myString = new String("Hello, World!");
    document.write(myString.bold());
    document.close();
    -->
    </script>
</html>