久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

原生JavaScript實現購物車

瀏覽:2日期:2023-06-11 08:08:53

本文實例為大家分享了JavaScript實現購物車的具體代碼,供大家參考,具體內容如下

效果:

原生JavaScript實現購物車

代碼:

<!DOCTYPE html><html> <head> <meta charset='UTF-8'> <title></title> <style> *{ margin: 0; padding:0; } .box{ width:600px; margin: 10px auto; background: url(img/g.jpg) ; height:500px; } td{ text-align: center; font-size: 30px; color:orangered; } button{ width:150px; border:0; border-radius: 5px; height:30px; background-color: dodgerblue; } /*.trl:hover{ background:pink; }*/ </style> </head> <body> <div class='box'> <br /> <button>全部?h除</button> <button>?中刪除</button> <br> <br> <input type='text' value='請輸入關鍵字' /> <input type='button' value='搜索' /> <br> <br> <table width=’600’ border='1' cellspacing='0'> <tr> <th><input type='checkbox' />全選</th> <th>商品</th> <th>價格</th> <th>序列號</th> <th>產地</th> <th>品牌</th> <th>操作</th> </tr> <tr class='trl'> <td><input type='checkbox' /></td> <td class='shop'>榴蓮</td> <td>20元</td> <td class='ind'>1</td> <td>海南</td> <td>安牌</td> <td onclick='del(this)'>刪除</td> </tr> <tr class='trl'> <td><input type='checkbox' /></td> <td class='shop'>蘋果</td> <td>20元</td> <td class='ind'>2</td> <td>海南</td> <td>安牌</td> <td onclick='del(this)'>刪除</td> </tr> <tr class='trl'> <td><input type='checkbox' /></td> <td class='shop'>草莓</td> <td>20元</td> <td class='ind'>3</td> <td>海南</td> <td>安牌</td> <td onclick='del(this)'>刪除</td> </tr> <tr class='trl'> <td><input type='checkbox' /></td> <td class='shop'>香蕉</td> <td>20元</td> <td class='ind'>4</td> <td>海南</td> <td>安牌</td> <td onclick='del(this)'>刪除</td> </tr> </table> </div> <script>// 全選全不選 var qx=document.getElementsByClassName(’qx’)[0]; var dx=document.getElementsByClassName('dx'); qx.onclick=function(){ for(var i=0;i<dx.length;i++){ dx[i].checked=qx.checked } } //全部刪除 var btn=document.getElementsByTagName('button'); var tr=document.getElementsByTagName(’tr’); var tbody=document.getElementsByTagName('tbody')[0]; btn[0].onclick=function(){ for(var i=1;i<tr.length;i++){ tbody.removeChild(tr[i]); i--; } } //選中刪除 var dx=document.getElementsByClassName(’dx’); btn[1].onclick=function(){ for(var i=0;i<dx.length;i++){ if(dx[i].checked==true){ tbody.removeChild(dx[i].parentNode.parentNode) i--; indChange(); } } } //清空文本框 搜索變顏色 var input=document.getElementsByTagName(’input’); input[0].onfocus=function(){ this.value='' } var shop=document.getElementsByClassName(’shop’); input[1].onclick=function(){ for(var i=0;i<shop.length;i++){ if(shop[i].innerHTML==input[0].value){ for(var j=0;j<shop.length;j++){ shop[j].parentNode.style.background='' } shop[i].parentNode.style.background='yellow' } } } // //移入移出 hover for(var i=1;i<tr.length;i++){ tr[i].onmouseover=function(){ this.style.background='pink' } tr[i].onmouseout=function(){ this.style.background='' } }//單行刪除(序列號)// 父元素.removeChild(子元素) tbody 刪除tr function del(t){ tbody.removeChild(t.parentNode); indChange(); } //序列號 function indChange(){ var ind=document.getElementsByClassName('ind'); for(var i=0;i<ind.length;i++){ ind[i].innerHTML=i+1; } } </script> </body></html>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 五家渠市| 吉安县| 宜兰县| 成都市| 故城县| 莒南县| 五家渠市| 瓦房店市| 横山县| 吉水县| 安义县| 云浮市| 额济纳旗| 邹平县| 临西县| 汶上县| 元谋县| 家居| 瑞安市| 惠水县| 武鸣县| 霍城县| 四会市| 英德市| 永修县| 渝中区| 黑山县| 类乌齐县| 郯城县| 济源市| 民丰县| 东乌| 阜平县| 阳曲县| 怀安县| 临沧市| 罗山县| 渑池县| 上栗县| 汶川县| 江都市|