js中document.write()使用方法

<script>
             var hrf = window.location.href;
      
    if(hrf.indexOf(‘change‘)>0){
      document.write(‘<body>‘);
               document.write(‘恭喜发財‘);
      document.write(‘</body>‘);
    }else{
    document.write(‘<body background="images/jjkan/backgroundm.jpg" >‘);
       document.write(‘<label id="lmxj_deatil_1" style="position:absolute;left:10px;top:20px;text-align:left;background-color:#00000;color:#010101;width:330px;font-size:18px;" value="1111" disabled>‘);
       if(isAdv==0){
      if(entityType=="channel"){      
      var sId = viewContent;
    //  target.innerHTML = ‘<AV id="movieWnd" serviceID="‘+sId+‘" name="movieWnd" style="position:absolute; border-width:0; left:5px; top:70px; //width:328px; height:244px;visibility: hidden;">‘;
     document.write(‘<AV id="movieWnd" serviceID="‘+sId+‘" name="movieWnd" style="position:absolute; border-width:0; left:5px; top:70px; width:328px; height:244px;">‘);
     movieWnd.play();
      }else{
      document.write(‘<div id="divNodeDescribeImg" style="position:absolute; border-width:0; left:5px; top:70px; width:328px; height:244px;"><img src = "‘+viewContent+‘" width="339" height="275" border="0"/></div>‘);
      //target.innerHTML = ‘<img src = "‘+viewContent+‘" width="339" height="275" border="0"/>‘; 
      }
    }else{
        //广告调用方式:通过节点的code(由生成页面的时候生成出来),调用广告系统中的js代码方式,返回广告代码
      document.write(‘<div id="tes" style="position:absolute; border-width:0; left:5px; top:70px; width:328px; height:244px;"><input id  = "showrs" type = "text"></input></div>‘);
      setInterval("timeout()",1000);
    //document.getElementById(‘aaa‘).value = "aaa";
    //target.style.visibility ="visible";
    // document.write(‘<img src = "http://192.168.18.146/images/material/advert_epg.jpg" width="339" height="275" border="0"/>‘);
    //document.getElementById(‘aaa‘).value ="bbb";

}
           document.write(‘</body>‘);
    }
   
  </script>

时间: 2024-10-07 02:48:09

js中document.write()使用方法的相关文章

JS中setTimeout()的使用方法具体解释

1. SetTimeOut()              1.1 SetTimeOut()语法样例              1.2 用SetTimeOut()运行Function              1.3 SetTimeOut()语法样例              1.4 设定条件使SetTimeOut()停止              1.5 计分及秒的counter    2. ClearTimeout()    3.  Set Flag   10.1 setTimeout( )

60秒验证码倒计时js代码 js样式代码 方块上下左右随机移动(定时器) js中获取元素的方法 js中表单提交

60秒验证码倒计时js代码 <script type="text/javascript"> var countdown=60; function settime(val) { if (countdown == 0) { //removeAttribute() 方法删除指定的属性. disabled属性规定应该禁用 input 元素. val.removeAttribute("disabled"); val.value="免费获取验证码"

JS中 document.getElementById 对象

Document 对象 每个载入浏览器的 HTML 文档都会成为 Document 对象. Document 对象使我们可以从脚本中对 HTML 页面中的所有元素进行访问. 提示:Document 对象是 Window 对象的一部分,可通过 window.document 属性对其进行访问. Document 对象集合 集合 描述 all[] 提供对文档中所有 HTML 元素的访问. anchors[] 返回对文档中所有 Anchor 对象的引用. applets 返回对文档中所有 Applet

JS的Document属性和方法

JS的Document属性和方法 document.title //设置文档标题等价于HTML的title标签document.bgColor //设置页面背景色document.fgColor //设置前景色(文本颜色)document.linkColor //未点击过的链接颜色document.alinkColor //激活链接(焦点在此链接上)的颜色document.vlinkColor //已点击过的链接颜色document.URL //设置URL属性从而在同一窗口打开另一网页docum

JS中document.createElement()用法及注意事项

今天处理了一个日期选择器的ie和ff的兼容问题,本来这种情况就很难找错误,找了好久才把错误定位到js中创建元素的方法document.createElement(),这个方法在ie下支持这样创建元素 var inputObj    = document.createElement     ("<input type='text' size='8' style='border:0px;border-bottom:2px solid #c0c0c0;'" readonly >&

node.js中的url.parse方法使用说明

node.js中的url.parse方法使用说明 *方法说明:* 讲一个URL字符串转换成对象并返回 代码如下: url.parse(urlStr, [parseQueryString], [slashesDenoteHost]) 接收参数: urlStr                                       url字符串 parseQueryString                   为true时将使用查询模块分析查询字符串,默认为false slashesDeno

bobo JS中document.write(&quot; &quot;);

<script>document.write("<h1>This is a heading</h1>");document.write("<p>This is a paragraph.</p>");</script> 您只能在 HTML 输出流中使用 <strong>document.write</strong>. 如果您在文档已加载后使用它(比如在函数中),会覆盖整个文

JS中定义类的方法&lt;转&gt;

转载地址:http://blog.csdn.net/sdlfx/article/details/1842218 PS(个人理解): 1) 类通过prototype定义的成员(方法或属性),是每个类对象共有的,一般不用来定义成员属性,一个对象修改了属性值,所有对象均被修改: 2) 类拥有prototype属性,类对象没有: 3) 每次new类对象或直接调用类(以下工厂方法形式),都会把定义类(function)的语句执行一次(单例模式可以避免这个情况): 4) 类是function类型,类对象是o

js中object的申明方法

1 //js中的对象申明使用new Object(); 2 //object类型的数据类似于数组通过下表来访问其中的值 3 //example1 4 5 var person=new Object(); 6 person.name="张三"; 7 person.age="12"; 8 person.sex="男"; 9 10 for(var i in person){ 11 console.log(i+":"+person[i