淘宝如何用css

html-css019

淘宝如何用css,第1张

开通淘宝CSS权限的方法有:

1.申请设计师:通过淘宝装修平台,申请成为设计师,但是新申请的设计师需要交纳10000元保证金。

2.购买旗舰版旺铺服务,可以直接使用CSS权限。

3.商城和拓展版用户可以和淘宝签署开通CSS权限的协议。

初始化时动态加载隐藏。

jquery :

$(function(){

$("#id").show()显示

$("#id").hide()隐藏

})

js :

function init(){

document.getElementById("id").style.display = "block" 显示

document.getElementById("id").style.display = "none" 隐藏

}