<a href="链接" style="text-decoration:underline">文字</a>
a连接或者 给 p加一个 text-decoration:underline
如果是链接a标签里面的,直接css样式 a:hover {text-decoration: underline} ,text-decoration是文本装饰的意思,underline就是下划线的意思,hover是伪类选择器;如果是p标签里的直接获取p元素,然后给p元素加上mouseover或mouseenter事件,再把 变量.style.textDecoration = "underline"就可以了