您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關怎么在html5中實現移動端價格輸入鍵盤,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
HTML:
<div class="main"> <div id="show-price"> </div> <div class="keyboard"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> <div>.</div> <div>0</div> <div>刪除</div> </div> </div>
CSS:
.keyboard { position: fixed; bottom: 0; width: 100%; height: 240px; display: flex; flex-wrap: wrap; } .keyboard div { width: 30%; height: 50px; margin: 5px; text-align: center; line-height: 50px; border-radius: 5px; background: #eee; }
JS:
<script src="../js/jquery-3.4.1.min.js"></script> <script> window.onload = function () { let key = $('.keyboard div'); let keyStr = '' key.click(function () { let str = '' let eleStr = $(this).html() == '刪除' ? '' : $(this).html(); // 是否刪除 if(keyStr.length <= 0 && eleStr == '0') return; // 首位不能為0 keyStr = keyStr + eleStr; // 拼接點擊的數字 if(eleStr == '') keyStr = keyStr.substr(0, keyStr.length - 1); // 刪除 for (let i = 0; i < keyStr.length; i++) { // 遍歷 if (keyStr[i] == '.') { // 判斷是否為. if (str.indexOf('.') == -1) str = str + keyStr[i]; // 是.并且其中不存在 } else str = str + keyStr[i]; // 不是.就拼接 } showPrice($('#show-price'), str); // 渲染 }) function showPrice(ele, str) { let htmlStr = '' for (let i = 0; i < str.length; i++) { htmlStr = htmlStr + `<span>${str[i]}</span>` } ele.html(htmlStr); } </script>
看完上述內容,你們對怎么在html5中實現移動端價格輸入鍵盤有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。