stylesheet
优质
小牛编辑
130浏览
2023-12-01
功能
动态创建css样式
author leeenx
version 1.0.0
create: 2015-11-11
Official Usage
//添加样式
$.stylesheet({
css: 'body{background-color: #ff0',
type: "add"
});
//添加样式
$.stylesheet({
css: 'body{background-color: #ff0',
type: "delete"
});
Lazy Usage
//添加样式
$.stylesheet('body{background-color: #ff0');
//减少样式
$.stylesheet('body{background-color: #ff0','delete');
参数列表
name | 类型 | 必选 | 描述 |
---|---|---|---|
css | string | compulsory | css样式 |
type | string | optional | 操作选项,目前有两个值:add , delete ,默认为: add。 |
incremental | boolean | optional | 是否增量更新,默认:1。为0表示对象的深度拷贝 |
DEMO
点击查看stylesheet模块下载
http://wq.360buyimg.com/js/ho2/min/uncmd.jshttp://wq.360buyimg.com/js/ho2/min/.js
http://wq.360buyimg.com/js/ho2/min/stylesheet.js