abstrait:<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>jQuery獲取/改變CSS</title> <script src=&q
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>jQuery獲取/改變CSS</title> <script src="jqurey/jquery-3.3.1.js"></script> <style type="text/css"> .bb{color:red;} </style> </head> <body> <script type="text/javascript"> $(document).ready(function(){ // $('button').click(function(){ // $('span,b,p').toggleClass('bb') // }) // console.log($('span').text()) // $('span').text('hello word') // console.log($('p').html()) $('p').html('<h1>helloworld!</h1>') $('input').val('我是被修改的值') console.log($('input').val()) }) </script> <span>大家好</span> <b>歡迎來到</b> <p>PHP中文網(wǎng)</p> <button>點(diǎn)擊切換</button> <input type="text" name="" value="我是元素的值"> </body> </html>