您好,登錄后才能下訂單哦!
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/jquery.js"></script> <script> window.onload = function(){ document.getElementById('btnok').onclick = function(){ //1.匹配第一個單元格 //$('td:first').html('test'); //2.匹配最后一個單元格 //$('td:last').html('test'); //3.通過odd和even實現隔行變色 //$('td:odd').css('backgroundColor','red'); //4.匹配索引為5的單元格 //$('td:eq(5)').css('backgroundColor','red'); //5匹配索引大于5的所有單元格 //$('td:gt(5)').css('backgroundColor','red'); //6.匹配索引小于5的所有單元格 //$('td:lt(5)').css('backgroundColor','red'); //7.匹配除索引5以外的所有td元素 $('td:not(td:eq(5))').css('backgroundColor','red'); } } </script> </head> <body> <input type="button" id="btnok" value="匹配" /> <br/> <table width="800" border="1"> <tr> <td>0</td> <td>1</td> <td>2</td> <td>3</td> <td>4</td> <td>5</td> <td>6</td> <td>7</td> <td>8</td> <td>9</td> </tr> </table> </body> </html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。