微信小程序如何获取 DOM 元素的样式信息?

微信小程序如何获取 DOM 元素的样式信息?

问题:如何在微信小程序中获取 dom 元素的样式信息,特别是针对那些由 css class 设置的样式?

答案:微信小程序目前不支持直接获取 DOM 元素的属性,包括样式信息。

不过,可以尝试使用 querySelector* 或 getElement* 查找和获取 DOM 元素。如果此方法无效,建议考虑替代方案。

一种常见的做法是将需要操作的样式值与状态或属性一起管理,以方便调用和管理。例如:

export const orderProcess = {   default: { label: '默认', color: '#848484', key: 0 },   pre: { label: '沟通中', color: '#ffd36e', key: 1 },   // ...   finish: { label: '订单完成', color: '#87d068', key: 8 },   cancel: { label: '作废', color: '#dedede', key: -1 }, };
登录后复制

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容