您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
今天就跟大家聊聊有关怎么在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。