开启辅助访问
帐号登录 |立即注册

用JS创建元素,解构实现元素的默认值配置。

 
下面案例,创建一个函数createElement,利用解构实现创建元素的默认值配置。

function createElement(optfons = {}) {
let { width = 200,height = 100, backgroundColor =”red" } = optfons;
const div = document. createElement("div");
div . style.width = width +"px";
div . style. height = height +px" ;
div . style. backgroundColor = backgroundColor ;
document . body . appendChild(div);
}
createElement({ width: 60,height: 30,backgroundColor:green})

回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

友情链接
  • 艾Q网

    提供设计文章,教程和分享聚合信息与导航工具,最新音乐,动漫,游戏资讯的网站。