课程
/前端开发
/JavaScript
/JavaScript入门篇
第一行的字体颜色只能用单撇号吗?我用了双撇号就不显示红色,但是第二行的又可以显示
2016-11-08
源自:JavaScript入门篇 1-1
正在回答
第一个是在“”之中,所以用‘ ’;而第二个是没有“”包含的,所以单引号,双引号都可以!
digit 提问者
单引号和双引号不能同时被相同的包起来,
"<font color=“red”>hello</font>"
这个就把red晾在中间,同符号按顺序来分
双引号里面不能加双引号,因为不能被识别.
所以只能加单引号
加个;试试
helvin
举报
JavaScript做为一名Web工程师的必备技术,本教程让您快速入门
4 回答title>认识语句</title> <script type="text/javascript"> document.write("Hello"); document.write("world"); </script>
1 回答关于<script language= javascript >和script type= javascript
3 回答<script type="text/javascript"></script>什么时候需要写 type="text/javascript",什么时候只有<script></script>
1 回答<script type="text/javascript">和<script>有区别吗
2 回答关于<script type="text/javascript"></script>的位置