91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在html5中實現移動端價格輸入鍵盤

發布時間:2021-05-27 16:21:54 來源:億速云 閱讀:168 作者:Leah 欄目:web開發

今天就跟大家聊聊有關怎么在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中實現移動端價格輸入鍵盤有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉善县| 康保县| 武定县| 交城县| 肥东县| 乌审旗| 巴楚县| 武邑县| 富顺县| 锡林浩特市| 江油市| 林口县| 黄陵县| 张家口市| 镇雄县| 博野县| 奉化市| 横山县| 兴海县| 琼中| 盘锦市| 鸡东县| 青州市| 三台县| 广东省| 云安县| 罗平县| 天峻县| 南雄市| 蕲春县| 大同市| 藁城市| 罗定市| 珲春市| 齐齐哈尔市| 西贡区| 来凤县| 双城市| 怀化市| 舟曲县| 缙云县|