您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)JS如何實(shí)現(xiàn)點(diǎn)擊Radio動(dòng)態(tài)更新table數(shù)據(jù)的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
1、能夠嵌入動(dòng)態(tài)文本于HTML頁(yè)面。2、對(duì)瀏覽器事件做出響應(yīng)。3、讀寫(xiě)HTML元素。4、在數(shù)據(jù)被提交到服務(wù)器之前驗(yàn)證數(shù)據(jù)。5、檢測(cè)訪客的瀏覽器信息。6、控制cookies,包括創(chuàng)建和修改等。7、基于Node.js技術(shù)進(jìn)行服務(wù)器端編程。
tbody定義一個(gè)標(biāo)簽
當(dāng)上面變化的,在js里面做拼接就行了,拼接結(jié)束 tbody.html(XXX)
<script type="text/javascript"> $(function(){ var quotas = { 1:{name:"工商銀行",oneTime:1000}, 2:{name:"農(nóng)業(yè)銀行",oneTime:800}, 3:{name:"中國(guó)銀行",oneTime:2000}, 4:{name:"建設(shè)銀行",oneTime:10}};
$(":radio").click(function(){ console.info("click:"+$(this).val()); var quota = quotas[$(this).val()]; var quotaHtml = []; quotaHtml = quotaHtml.concat([ '<tr>', '<td>'+quota.name+'</td>', '<td>'+quota.oneTime+'</td>', '<td>100</td>', '<td>100</td>', '<td>100</td>', '</td>' ]) console.info("html:"+quotaHtml); $("#quota").html(quotaHtml) }); }); </script> <body> <input type="radio" name="bank" value="1"/>工商銀行 <input type="radio" name="bank" value="2"/>農(nóng)業(yè)銀行 <input type="radio" name="bank" value="3"/>中國(guó)銀行 <input type="radio" name="bank" value="4"/>建設(shè)銀行 <br/> <table> <tr> <th>銀行</th> <th>額度</th> <th>日額度</th> <th>月額度</th> <th>還有啥額度</th> </tr> <tbody id="quota"></tbody> </table> </body>
感謝各位的閱讀!關(guān)于“JS如何實(shí)現(xiàn)點(diǎn)擊Radio動(dòng)態(tài)更新table數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。