如果是在 React 项目中最方便的方式是使用 React 提供 `CSSProperties` 类型: import { CSSProperties } from "react"; function setAttrsToElement(el: HTMLElement, attr: CSSProperties) { for (const key in attr) { el.setAttribute(key, attr[key]); } } 如果不是 React 项目,则可以安装 `csstype` 库: import * as CSS from 'csstype'; function setAttrsToElement(el: HTMLElement, attr: CSS.Properties) { for (const key in attr) { el.setAttribute(key, attr[key]); } } 