码迷,mamicode.com
首页 > Web开发 > 详细

Js基础01-输出内容

时间:2017-09-28 20:47:04      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:span   class   round   连接   log   hit   col   css   变量   

Javascript-输出内容 (document.write)

  ducument.write 可直接向HTML输出流写内容。也就是直接在网页中输出内容。

   第一种:输出内容用""括起,直接输出""内的内容。     

<script> 
     document.write("我要吃火锅"); 
</script> 

       第二种:通过变量,输出内容。   

<script>
   var mycard="我要吃火锅";
   document.write(mycard);
</script>

 

        第三种:输出多项内容,内容之间用+号连接。

<script>
     var mycard="我要";
     document.write(mycard+"吃火锅");
</script>

  第四种:输出HTML标签,并起作用,标签使用""括起来。

<script>
     var mycard="我要吃火锅";
     document.write(mycard+"<br>");
     document.write("javascript");
</script>

       JS如何输出空格?

       1. 使用输出html标签&nbsp;来解决。

   document.write("&nbsp;&nbsp;"+"立"+"&nbsp;&nbsp;&nbsp;&nbsp;"+"定"); 

       2. 使用CSS样式来解决。

         document.write("<span style=‘white-space:pre;>"+"立 定"+"</span>"); 

 

 

 

 

   

 

Js基础01-输出内容

标签:span   class   round   连接   log   hit   col   css   变量   

原文地址:http://www.cnblogs.com/Fannie-/p/7608276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!