淘宝支持JS吗

JavaScript015

淘宝支持JS吗,第1张

淘宝模板,店铺装修都不支持JS。别说js了,连id属性都不能使用。都是为了安全考虑,如果用了js,那就可以大量自定义覆写店铺的代码,很危险的。更有甚者,淘宝在加载时还对iframe进行检测,如果发现页面有父页面,则不加载,可见,淘宝web的严格。淘宝的web技术独步天下,一直被模仿。其实,不用js也能做出很好的店面效果的。

希望有用。

打开IE浏览器,工具->Internet选项->安全->区域选择”Internet”->自定义级别, “对标记为可安全执行脚本的ActiveX控件执行脚本”设为“启用”,“下载已签名的ActiveX控件”设为“提示”,“运行ActiveX控件和插件”设为“启用”

工具.internet选项.隐私.高级.二只方块打勾.

<html><head>     <style>    div{        cursor: pointer        font-size:10pt        }             .pb{    width:300px/*单个图片的宽(和显示区域相同)*/    height:300px/*单个图片的高(和显示区域相同)*/    }    #plist{        position:relative        top:-29px        }    #pshow{    width:300px/*显示区域的宽度*/    height:300px/*显示区域的高度*/    overflow: hidden    position:absolute    top:20px    left:20px        }</style><script src="jquery-1.9.1.js" type="text/javascript"></script><script>    var i=1    function pchange(obj){        var imgtop=((0-(obj-1))*300-29)+"px"        $("#plist").animate({        top:imgtop},"slow")  i=obj++  if(i>4){        i=1        }        } function timechange(){    pchange(i)    i++    if(i>4){        i=1        }        setTimeout('timechange()',3000)    }</script></head> <body onload="timechange()"><div id="pshow">    <div style="display:tableposition:relativeleft:150pxtop:260pxz-index:99">    <div style="display:table-cellwidth:25pxheight:20pxbackground:#EEEE00text-align:center" onmouseover="pchange(1)">1</div>    <div style="display:table-cellwidth:10pxheight:20px"></div>    <div style="display:table-cellwidth:25pxheight:20pxbackground:#EEEE00text-align:center" onmouseover="pchange(2)">2</div>    <div style="display:table-cellwidth:10pxheight:20px"></div>    <div style="display:table-cellwidth:25pxheight:20pxbackground:#EEEE00text-align:center" onmouseover="pchange(3)">3</div>    <div style="display:table-cellwidth:10pxheight:20px"></div>    <div style="display:table-cellwidth:25pxheight:20pxbackground:#EEEE00text-align:center" onmouseover="pchange(4)">4</div>    </div>    <div id="plist">        <div class="pb" style="background:green">                         </div>                    <div  class="pb" style="background:red">                         </div>                    <div class="pb" style="background:blue">                         </div>                    <div  class="pb" style="background:yellow">                         </div>        </div>         </div> </body></html>