Jquery內(nèi)容
<script type="text/javascript"> $(function () { var num = 0; $(".box ol li:eq(0)").click(function () { $(":text").each(function () { num += parseFloat($(this).val()); }); alert(num); }); $(".box ol li:eq(1)").click(function () { var num = 0; $(":text").each(function () { num += parseFloat($(this).val()); if (parseInt($(this).val()) == parseInt(num % 9) { $(this).css("background", "red"); } }); }); }); </script>
html內(nèi)容
<body style="font-size: 12px;"> <div class="box"> 請編寫javascript代碼,完成如下功能要求:<br /> <ol> <li> 計算下面文本框中數(shù)字之和 <input type="button" value="點我執(zhí)行計算" /> </li> <li> 點我將所有文本框中數(shù)字之和,對9求余數(shù),將數(shù)字等于余數(shù)的文本框前景色改為紅色 <input type="button" value="點我執(zhí)行計算"/> </li> </ol> </div> <div id="mybox" class="box"> <input type="text" value="1" /> <input type="text" value="2" /> <input type="text" value="3" /> <input type="text" value="4" /> <input type="text" value="5" /> <input type="text" value="6" /> <input type="text" value="7" /> <input type="text" value="8" /> <input type="text" value="9" /> </div> </body>
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com