前端怎么在function中定义a标签
时间: 2024-04-30 07:22:33 浏览: 39
前端可以使用以下代码在function中定义a标签:
```javascript
function createLink(href, text) {
var link = document.createElement("a");
link.href = href;
link.textContent = text;
return link;
}
// 调用函数,创建a标签
var a = createLink("http://www.example.com", "Example");
document.body.appendChild(a);
```
阅读全文