gpt4 book ai didi

javascript - 如何在此代码中添加 "exception"或 "condition"(javascript,jquery)?

转载 作者:行者123 更新时间:2023-12-02 14:12:20 25 4
gpt4 key购买 nike

我想在此代码中添加异常(exception)或条件。

var a = 0;
$(document).ready(function() {
$(document).on("change", "#txtInput" ,function(){
$("#contenido").append("<tr><td>"+$("#txtInput").val()+"</td></tr>");
a += 1;
var str = 'Total Bianuales: '
$('p').html(str + a);
}
)

});

它的工作原理是这样的:我得到一个 ID 为 txtInput 的值。我在代码中得到了有关此 ID 的一些条件,但我想在它在创建的表中添加值时应用它。如何设置一个条件,仅在重大或等于 9 时附加从 txtInput 获取的值?

无论如何,感谢您的帮助!

最佳答案

请记住,更改会在输入失去焦点时触发,因此您需要单击控件外的区域才能触发它。如果您希望它在每次击键时触发,那么您需要 input 事件。

var a = 0;
$(document).on("change", "#txtInput",function(){
var inputLength = this.value.length;
if (inputLength <= 8) { return; }

$("#contenido").append("<tr><td>" + this.value + "</td></tr>");
$("p").html('Total Bianuales: ' + (++a));
});
<input id="txtInput" />
<table id="contenido"></table>
<p></p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

关于javascript - 如何在此代码中添加 "exception"或 "condition"(javascript,jquery)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39420426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com