码迷,mamicode.com
首页 > 其他好文 > 详细

输出内容(document.write)

时间:2016-05-05 15:59:13      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

document.write() 直接在页面中输出内容

第一种 直接输出

   document.write("I Love Javascript !") //输出内容为:I Love Javascript !

第二种 通过变量输出

   var mystr = "hallo world!";

   document.write(mystr); //输出结果为:hallo world!

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

    var mystr = "hello";

    document.write(mystr+"I Love Javascript"); //输出内容为:hello I Love Javacsript

第四种 输出HTML标签,标签使用""括起来

   var mystr = "hello";

   document.write(mystr+"<br>");  //输出的内容会换行

   document.write("javascript");  

 

输出内容(document.write)

标签:

原文地址:http://www.cnblogs.com/2520IT/p/5462181.html

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