2024-04-30 - onkeydown 이벤트

·2024년 4월 30일

onkeydown 이벤트

onkeydown="/input val 체크 및 수정/"
onkeyup=""

 <div class="mt-5">보유 예치금 : [[${actorRestCash}]]</div>
                <div th:with="maxUseRestCash = ${order.calculatePayPrice > actorRestCash ? actorRestCash : order.calculatePayPrice}">
                    <span>사용할 예치금 : </span>
                    <input type="number" id="PaymentForm__useRestCash"
                           th:placeholder="|0 - ${maxUseRestCash}|" min="0" th:max="${maxUseRestCash}"
                           class="input input-bordered min-w-[300px]"
                           onkeydown="/*input val 체크 및 수정*/"
                           onkeyup=""
                    >
                    <label class="inline-flex items-center">
                        <span>전액 사용</span>
                        <input type="checkbox" class="ml-2 checkbox">
                    </label>
                    <!--                    <input id="PaymentForm__useRestCash" type="number" placeholder="사용할 예치금" min="0"-->
                    <!--                           th:max="${order.calculatePayPrice > actorRestCash ? actorRestCash : order.calculatePayPrice}"-->
                    <!--                           class="input input-bordered min-w-[300px]">-->
                </div>
profile
hello world

0개의 댓글