How to use CSS to change the background color of a paragraph after clicking a link in an HTML page
P粉311423594
P粉311423594 2023-09-02 00:38:08
0
1
484
<p>Can I change the background color of a paragraph when I click a link on the page. </p> <blockquote> <pre class="brush:php;toolbar:false;"><a href="#p4">Jump to P4</a> <p id="p4">I am P4</p></pre> </blockquote> <p>What do I need to write in CSS to achieve this -</p> <blockquote> <p>p {Background color: yellow; }</p> </blockquote></p>
P粉311423594
P粉311423594

reply all(1)
P粉286046715

You cannot change the properties of an element by clicking on another element, but you can do so through JavaScript. Just add the <script> tag at the end of your <body> tag and onclick on the <a> tag ()event:

<body>
    <a href="#p4" onclick="changeColor()">跳转到P4</a>
    <p id="p4">我是P4</p>

    <script>
      function changeColor() {
      document.getElementById("p4").style.backgroundColor = "yellow";
      }
    </script>
</body>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!