- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道有人问过类似的问题,但我还无法正确实现可行的解决方案。这是 JS Fiddle。
这是html代码
<body>
<div id="formula1">
<form>
<div id="title"> <span>Title</span><input type="text" maxlength="85" size="60"> <input id="random" type="checkbox" style="float:right;"><span style="float:right"> Random? </span><br><br></div>
<span>Add</span><input type="number" id="addquant" min="1" max="95"><button type="button" class="addmore">More Entries</button>
<span>Remove</span><input type="number" id="delquant" min="1" max="95"><button type="button" class="delmany">Entries</button>
<br><br>
<button type="button" class="preview">Preview</button>
</form>
</div>
<div id="iddisplay"></div>
</body>
这是脚本
var entlim = 10; // The maximum number of thoughts
var charlim = 10; // The maximum number of characters in each entry
// These are the insert variables when adding new entries
var ins1 = "<div id='temp' class='entry'>";
var ins2 = "<span class='label'> pi. </span>";
var ins3 = "<input type='text' class='entinput' maxlength='" + charlim + "' size='90'> <button type='button' class='entDelete'> Delete </button> ";
var ins4 = "<button type='button' class='entAdd'> Add above </button>";
var ins5 = "<span class='photo'>Add photo?<input class='pic' type='checkbox'></span><br><span class='countdown' style='font-size:12px;left:18px;position:relative'></span><br></div>";
var ins6 = ins1 + ins2 + ins3 + ins4 + ins5;
// Adds individual entries above the clicked button
function addAbove(abo){
var count = $('div.entry:last').attr('id');
count = count.replace(/\D/g,'');
count = parseInt(count);
if (count >= entlim) { // Make sure the limit of entries hasn't been reached
alert("Too many thoughts!");}
else {
$(abo).before(ins6);}
}
// Renumbers all entries sequentially (id's and text label all updated)
function setDivIDs()
{
$.each($('form>div.entry'), function(ind,val){
var num = ind + 1;
$(this).attr('id', 'ent' + num);
$(this).find('span.label').html(num + '. ');
});
}
function updateCountdown()
{
$.each($('form>div.entry'), function(){
var remaining = charlim - $(this).children('.entinput').val().length;
if (remaining <= 10 && remaining > 0) {
$(this).children('span.countdown').text(remaining).css("color","orange");
}
else if (remaining === 0) {
$(this).children('span.countdown').text(remaining).css("color","red");
}
else {
$(this).children('span.countdown').text('');
}
});
}
// Buttons activated after the page has fully loaded
$(document).ready(function(){
//Build entries (executes one time)
for (var i = 0; i < 5; i++){
$('#title').after(ins6);
}
setDivIDs();
// Add individual entry activation
$('form').on('click', '.entAdd', function(){
addAbove($(this).parent());
setDivIDs();
updateCountdown();
});
// Delete individual entry activation
$('form').on('click', '.entDelete', function(){
$(this).parent().remove();
setDivIDs();
if ($('.entry').length < 5) // Make sure that at least 5 entries show at all times
{
$('div.entry:last').after(ins6);
setDivIDs();
updateCountdown();
}
});
// Add more entries based on user input (limit number of entries)
$('form').on('click', '.addmore', function(){
var num = $("#addquant").val();
for (var i = 0; i < num; i++){
var count = $('div.entry:last').attr('id');
count = count.replace(/\D/g,'');
count = parseInt(count);
if (count < entlim)
{
$('div.entry:last').after(ins6);
setDivIDs();
}
else
{
alert("Too many Entries");
break;
}
$('#addquant').val('');}
});
// Delete many entries based on user input (need to limit number deletes)
$('form').on('click', '.delmany', function(){
var num = $("#delquant").val();
for (var i = 0; i < num; i++)
{
if ($('.entry').length > 5)
{
$('div.entry:last').remove();
$('#delquant').val('');
}
else
{
break;
}
}
});
// Update the character countdown
updateCountdown();
$.each($('form>div.entry'), function(){
$(this).children('input').change(updateCountdown);
$(this).children('input').keyup(updateCountdown);
});
// Create upload button for photo uploaded
$('form').on('click', '.pic', function(){
if (this.checked) {
var count = $(this).parents('div').attr('id');
count = count.replace(/\D/g,'');
count = parseInt(count);
var picins = "<input type='file' id='pic" + count + "'><button type='button' class='rempic'>Remove</button>";
$(this).parent('span').html(picins);
};});
// Remove photo upload button and revert back
$('form').on('click', '.rempic', function(){
var addp = "Add photo?<input class='pic' type='checkbox'>";
$(this).parent('span').html(addp);
});
});
如您所见,字符计数对于最初创建的条目来说效果很好,但是,如果您单击“在上方添加”,然后在新的条目字段中键入内容,则字符计数不会更新,直到您离开输入为止.
根据我收集的信息,我需要使用 .on
但显然我无法正确执行此操作。
最佳答案
问题是您的事件不会自动绑定(bind)到新元素。要执行此操作,请使用 A.Wolff 建议的委托(delegate):
我用你的代码创建了这个 fiddle :
http://jsfiddle.net/jFIT/v8ZMp/
这将自动将表单中存在的 .entinput 类的任何文本输入与调用 updateCountdown 的 keyup 事件绑定(bind)。
$('form').on('keyup', '.entinput', function(){
updateCountdown();
});
关于jquery - 字符计数不适用于动态输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22537590/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
为什么在 C# 中添加两个 char 结果是 int 类型? 例如,当我这样做时: var pr = 'R' + 'G' + 'B' + 'Y' + 'P'; pr 变量变为 int 类型。我希望它是
下面的代码可以编译,但 char 类型的行为与 int 类型的行为不同。 特别是 cout ::ikIsX >() ::ikIsX >() ::ikIsX >() using names
我正在寻找一个正则表达式,它可以匹配长度为 1 个或多个字符但不匹配 500 的内容。这将在 Rails 路由文件中使用,特别是用于处理异常。 路线.rb match '/500', to: 'err
对于 C 编程作业,我正在尝试编写几个头文件来检查所谓的“X 编程语言”的语法。我最近才开始,正在编写第一个头文件。这是我编写的代码: #ifndef _DeclarationsChecker_h_
为什么扩展的 ascii 字符(â、é 等)被替换为 字符? 我附上了一张图片...但我正在使用 PHP 从 MySQL 中提取数据,其中一些位置有扩展字符...我使用的是 Arial 字体。 您可以
我有一个与 R 中的断线相关的简单问题。 我正在尝试粘贴,但在获取(字符/数字)之间的断线时遇到问题。请注意,这些值包含在向量中(V1=81,V2=55,V3=25)我已经尝试过这段代码: cat(p
如何将 ANSI 字符 (char) 转换为 Unicode 字符 (wchar_t),反之亦然? 是否有用于此目的的任何跨平台源代码? 最佳答案 是的,在 中你有mbstowcs()和 wcsto
函数 fromCharCode 不适用于国际 ANSI 字符。例如,对于 ID 为 192 到 223 的俄语 ANSI (cp-1251) 字符,它返回特殊字符。如何解决这个问题? 我认为,需要将A
如果不喜欢,我想隐藏 id,但不起作用 SELECT * FROM character, character_actor WHERE character.id NOT LIKE character_a
现在这个程序成功地反转了键盘输入的单词。但是我想在我反转它之前“保存”指针中的单词,所以我可以比较两者,反转的和“原始的”,并检查它们是否是回文。我还没有太多经验,可能会出现比我知道的更多的错误,但我
Memcpy 和 memcmp 函数可以接受指针变量吗? char *p; char* q; memcpy(p,q,10); //will this work? memcmp(p,q,10); //w
恐怕我对一个相当过饱和的主题的细节有疑问,我搜索了很多,但找不到一个明确的答案来解决这个特定的明显-imho-重要的问题: 使用UTF-8将byte[]转换为String时,每个字节(8bit)都变成
我有一个奇怪的问题。我需要从 stat 命令打印输出字符串。 我已经编写了获取一些信息的代码。 import glob import os for file in glob.glob('system1
我正在使用 Java 并具有其值如下所示的字符串, String data = "vale-cx"; data = data.replaceAll("\\-", "\\-\\"); 我正在替换其中的“
String urlParameters = "login=test&password=te&ff"; 我有一个String urlParams,& - 是密码的一部分,如何使其转义,从而不被识别为分
大家好,我只想从此字符串中提取第一个字母: String str = "使 徒 行 傳 16:31 ERV-ZH"; 我只想获取这些字符: 使 徒 行 傳 并且不包括 ERV-ZH 仅数
这个问题已经有答案了: Crash or "segmentation fault" when data is copied/scanned/read to an uninitialized point
所以, 我有一个字符**;它本质上是一个句子,带有指向该句子中每个单词的指针;即 'h''i''\0''w''o''r''l''d''\0''y''a''y''!''\0' 在这种情况下,我希望使用可
这个问题在这里已经有了答案: Using quotation marks inside quotation marks (12 个答案) 关闭 7 年前。 如何打印 " 字符? 我知道打印 % 符号
我是一名优秀的程序员,十分优秀!