document.write("<div class=\"news\">");
document.write("<div class=\"inner\">");
document.write("<h3><img src=\http://recruiting.oracle.co.jp/HR/career/images/top_hd_news.gif\ alt=\"What's NEW\" width=\"78\" height=\"16\" /></h3>");
document.write("<ul>");
document.write("<li><a href=\"http://recruiting.oracle.co.jp/HR/career/lounge/index.html\">2009.03.19<span class=\"title\">リクルーターBlog更新中!</span></a></li>");document.write("<li>2009.02.02<span class=\"title\">2009年2月2日、中途採用サイト全面リニューアル!</span></li>");
document.write("</ul>");
document.write("<!-- /inner --></div>");
document.write("<!-- /box-news --></div>");

解决方案 »

  1.   

    富农…………真的假的…………
    不管怎样,接分。
    document.write(string)
    以这句JavaScript所在script块的位置为基准,向HTML写入string,这里的string是啥都行,不过一般都是写HTML
      

  2.   

    自己百度查下document.write用法就可以了
    就是将HTML输出到页面上
    那几行日文字 跟你的程序无关 リクルーターBlog更新中 招聘blog更新中
      

  3.   

    和外国字没关系。
    只是写了两个嵌套的div<div>
         <div class="inner">
              <h3></h3>
              <ul>
                  <li></li>
                  <li></li>
              </ul>
         </div>
    </div>
      

  4.   

    document.write就是向文档里写入字符串
      

  5.   

    document.write()
    输出的
    和语言无关性
      

  6.   

    就是通过javscript写出页面代码。日语的意思就不知道了,不过编成一般不受影响。
      

  7.   

    document.write() 
    输出的 
    和语言无关性确实..
      

  8.   

    document.write(string) 
    以这句JavaScript所在script块的位置为基准,向HTML写入string,这里的string是啥都行,不过一般都是写HTML这就是简单的输出到页面上面。
      

  9.   

    输出内容到页面中,如果输出的是HTML标签,则会自动转化为HTML元素展现在页面上。
      

  10.   

    实际上是为了在已有的html标签中插入如下标签及内容:<div class="news">
    <div class="inner">
    <h3><img src=http://recruiting.oracle.co.jp/HR/career/images/top_hd_news.gif alt="What's NEW" width="78" height="16" /></h3>
    <ul>
    <li><a href="http://recruiting.oracle.co.jp/HR/career/lounge/index.html">2009.03.19<span class="title">リクルーターBlog更新中!</span></a></li><li>2009.02.02<span class="title">2009年2月2日、中途採用サイト全面リニューアル!</span></li>
    </ul>
    <!-- /inner --></div>
    <!-- /box-news --></div>显示效果如下(左上角还有一图片)此处我没有插入:2009.03.19リクルーターBlog更新中!
    2009.02.022009年2月2日、中途採用サイト全面リニューアル!只不过用了转意符“\”,这是为了要输出引号才使用的,防止解析错误。