function setStyle(element){ element.style.fontWeinght = "bold"; element.style.textDecoration= "none"; element.style.color = "#000000" }
时间: 2024-02-23 07:00:39 浏览: 56
Change-the-text-and-style.zip_style
这是一个JavaScript函数,作用是设置 HTML 元素的样式。函数接受一个参数 element,表示要设置样式的 HTML 元素。函数内部通过 element.style.xxx 的方式来设置样式属性,其中 xxx 表示样式属性名,例如 font-weight、text-decoration、color 等。
具体的样式设置如下:
- element.style.fontWeight = "bold"; 设置字体加粗
- element.style.textDecoration = "none"; 取消下划线
- element.style.color = "#000000"; 设置文字颜色为黑色
这个函数可以用于 JavaScript 中动态地设置 HTML 元素的样式,例如:
```html
<button id="myButton">Click me</button>
```
```javascript
const button = document.getElementById("myButton");
setStyle(button); // 设置按钮的样式
```
这样就可以通过调用 setStyle 函数来设置按钮的样式。
阅读全文