如何通过单击按钮更改文本颜色? [英] How to change the text color with button click?

查看:43
本文介绍了如何通过单击按钮更改文本颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有如下文字:

<p><strong><em> QUESTION: WHAT IS YOUR NAME?</em></strong></p>
<button>COLORCHANGER<button>

我想在单击按钮时更改文本颜色.

I want to change the text color when I click the button.

推荐答案

使用 addEventListener('click')click 事件附加到按钮,然后更改您的按钮的颜色使用 .style.color = 'color' 的文本,请查看下面的示例.

Attach click event to the button using addEventListener('click') then change the color of your text using .style.color = 'color', check example below.

注意:如果你给你的元素一个标识符会更好.

NOTE : It will be better if you give your elements an identifier.

希望这会有所帮助.

document.querySelector('button').addEventListener('click', function(){
    document.querySelector('p').style.color='green';
})

<p><strong><em> QUESTION: WHAT IS YOUR NAME?</em></strong></p>
<button>COLORCHANGER</button>

这篇关于如何通过单击按钮更改文本颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆