JavaScript String bold() 方法
描述
该方法使字符串以加粗的方式显示,就像它被包裹在 <b>
标签中一样。
语法
bold() 方法的语法如下:
string.bold( )
返回值
返回带有 <bold>
标签的字符串。
示例
尝试以下示例。
<html>
<head>
<title>JavaScript String bold() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.bold());
</script>
</body>
</html>
输出
<b>Hello world</b>