如何在 Jquery 中多次调用一个函数来添加一个事件监听器而不只是监听最后一个?
Posted
技术标签:
【中文标题】如何在 Jquery 中多次调用一个函数来添加一个事件监听器而不只是监听最后一个?【英文标题】:How to call a function multiple times in Jquery to add an event listener without just listening the last one? 【发布时间】:2020-04-06 04:34:58 【问题描述】:所以我想创建一个函数来计算文本框中的字符并打印其下方的数字。问题是我希望能够重复使用该功能两次,因为我有两个文本框。
<textarea id="custom_message" placeholder="sumthin sumthin" maxlength="240"></textarea>
<div id="charsleft1" class="span-8" style="float:right; text-align:right"></div>
<textarea id="restriction_message" placeholder="other sumthing" maxlength="240"></textarea>
<div id="charsleft2" class="span-8" style="float:right; text-align:right"></div>
我想调用此函数两次,但只有最后一次调用该函数有效,这是我的函数。
function char_counter_limit(selector, content)
text_box = "#"+selector.split("#")[1]
counter = "#"+selector.split("#")[2]
var maxlength = $(text_box).attr("maxlength");
$(counter).text(0+" / "+maxlength);
$(text_box).on("input", function()
var maxlength = $(this).attr("maxlength");
var currentLength = $(this).val().length;
if(currentLength <= maxlength)
$(counter).text(currentLength+" / "+maxlength);
)
选择器将是文本框的 id 和一个字符串 ej 中的 div:“#custom_message#charsleft1”
【问题讨论】:
旁注:您的代码与分号不一致。我强烈建议您决定是依赖 ASI 并省略它会为您修复的分号,还是包含它们,然后可靠地做到这一点。 你可能错过了 text_box 和 counter 的 var 声明 【参考方案1】:假设您传入不同的选择器,问题是您的代码正在成为我所说的 Horror of Implicit Globals 的牺牲品:您需要声明 text_box
和 counter
以便它们是 char_counter_limit
函数的本地变量,而不是全局变量。当它们是全局变量时,第二个调用会覆盖第一个调用。
把var
放在他们面前:
function char_counter_limit(selector, content)
var text_box = "#"+selector.split("#")[1]
var counter = "#"+selector.split("#")[2]
【讨论】:
以上是关于如何在 Jquery 中多次调用一个函数来添加一个事件监听器而不只是监听最后一个?的主要内容,如果未能解决你的问题,请参考以下文章
即使我们在一个表单中多次声明它,如何让 jQuery 函数只执行一次?