1、新建一个html文件,命名为test.html,用于讲解js如何将字符串显示为粗体。
2、在script标签内,创建一个字符串变量,用于测试。
3、在script标签内,使用bold()方法将字符串的字体样式设置为粗体。
4、在script标签内,使用write输出结果。
5、在浏览器打开test.html文件,查看结果。
给需要设计的文字加个id,用document.getElementById("id")去访问该元素,获取dom,然后如下:document.getElementById("id").style.color="blue"
document.getElementById("id").style.fontWeight="bold"