- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我似乎无法解决这个问题,大约两个小时后我放弃了。我根本不擅长 javascript。
这是一个 jfiddle,其中包含我在这里找到的一个不错的 jquery:
[html]
<button id="addProduct">Add Product</button>
<div id="someContainer"></div>
<span></span>
[javascript]
var i = 1;
$("#addProduct").click(function() {
$("<div />", { "class":"wrapper", id:"product"+i })
.append($("<input />", { type: "text", id:"name"+i }))
.append($("<input />", { type: "text", id:"property"+i }))
.appendTo("#someContainer");
i++;
});
$("input").live("click", function() {
$("span").text("Clicked ID: " + this.id);
});
它附加两个具有唯一 ID 的新输入。现在我想做的是使用 on() 在“焦点”时重置不同输入的值。问题是,我希望它清除其相应的输入,例如关注“id=name1”将重置“id=property2”,反之亦然,关注“id=name2”将重置“id=property2”,反之亦然于...
所以我添加了:
var i = 1;
$("#addProduct").click(function() {
$("<div />", { "class":"wrapper", id:"product"+i })
.append($("<input />", { type: "text", class:"name"+i }))
.append($("<input />", { type: "text", class:"property"+i }))
.appendTo("#someContainer");
$("#product"+i).on("focus", $(".name"+i), function() {
$(".property"+i).val("");
});
$("#product"+i).on("focus", $(".property"+i), function() {
$(".name"+i).val("");
});
i++;
});
但无论出于何种原因,我无法重置这些输入。该函数似乎忽略了递增的值。如果我删除 var i 它似乎可以工作,但它会清除我的所有输入。从逻辑上讲,在类末尾添加“+i”应该可以解决问题,但事实并非如此。我尝试过使用不同形式的选择类:
$("#product"+i).find(".name"+i);
但这似乎也没有帮助。我真的不明白这有什么问题。如果有人可以提供帮助,我将不胜感激。
最佳答案
不要尝试对此类事情使用增量 ID。相反,使用类。通过这种方式处理动态元素要容易得多。请参阅下面的示例:
$("#addProduct").click(function() {
$("<div />", { "class":"wrapper", class:"product"})
.append($("<input />", { type: "text", class:"name" }))
.append($("<input />", { type: "text", class:"property" }))
.appendTo("#someContainer");
});
$('#someContainer').on('click', '.name, .property', function() {
var $this = $(this);
var $otherInput = $this.parent().find('.name, .property').not($this).val('');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="addProduct">Add Product</button>
<div id="someContainer"></div>
<span></span>
首先,此处理程序监听 #someContainer
内的任何点击。元素。当听到咔嗒声时,它会检查被单击的元素是否具有 name
或property
类,如果存在,则调用该函数。
$('#someContainer').on('click', '.name, .property', function() {
});
接下来,我们缓存this
作为 jQuery 对象。这是被单击的元素。
var $this = $(this);
现在我们有:
$this.parent().find('.name, .property').not($this).val('');
$this.parent()
获取被点击元素的父元素.find('.name, .property')
查找该父项的任何具有 name
的子项或property
类.not($this)
从匹配的元素中排除单击的元素val('')
清除所有匹配元素的值,本例中仅清除一个元素请注意 madalin ivascu 使用 .siblings().val("");
更加简洁。老实说,我忘了它,不过如果您以后有更多元素并且不想清除一些元素,这种方式会更灵活。
第一个问题是处理程序的绑定(bind)。你有:
$("#product"+i).on("focus", $(".name"+i), function() {
//.....
});
如果你看一下docs for .on()它对第二个参数说了以下内容:
selector
Type: String
A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.
您正在传递一个 jQuery 对象 $(".name"+i)
但这应该是一个字符串,所以只是 ".name"+i
像这样:
$("#product"+i).on("focus", ".name"+i, function() {
//.....
});
第二个问题是递增i
的逻辑是有缺陷的。让我们看看为什么:
var i = 1; // here we set i to 1, cool
$("#addProduct").click(function() {
$("<div />", { "class":"wrapper", id:"product"+i })
.append($("<input />", { type: "text", class:"name"+i }))
.append($("<input />", { type: "text", class:"property"+i }))
.appendTo("#someContainer");
// the 3 lines above all use i and i=1, so far so good
$("#product" + i).on("focus", ".name" + i, function() { // for clarity, I have corrected this line, again, here i=1 so we're fine
$(".property" + i).val(""); // here is the issue, but we'll come back to this...
});
//..... other code....
i++; // here we increment i so now, i=2 , seems ok, but it's not
});
所以我们现在知道问题出在嵌套处理程序上。发生的情况如下:
当我们绑定(bind)处理程序时,i
立即评估并且这一行 i=1
$("#product" + i).on("focus", ".name" + i, function() {
//....
});
但是,处理程序内的代码在用户单击 $("#product1")
之前不会执行。 这将是在我们增加 i
之后
这意味着,当以下行运行时,i
始终比添加到页面的最后一个元素高一个数字。因此,即使您修复了选择器,您也将尝试清除不存在的元素
$(".property" + i).val(""); // i here will always be the newest value for i
// NOT the value of i when the handler was attached
运行下面的代码片段并观察控制台输出以了解我的意思:
var i = 1;
$("#addProduct").click(function() {
$("<div />", { "class":"wrapper", id:"product"+i })
.append($("<input />", { type: "text", class:"name"+i }))
.append($("<input />", { type: "text", class:"property"+i }))
.appendTo("#someContainer");
$("#product" + i).on("focus", ".property" + i, function() {
console.log(".property" + i);
});
$("#product" + i).on("focus", ".name" + i, function() {
console.log(".name" + i);
});
i++;
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="addProduct">Add Product</button>
<div id="someContainer"></div>
<span></span>
关于javascript - jQuery 函数忽略增量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39607739/
这个问题已经有答案了: What is x after "x = x++"? (18 个回答) 已关闭 6 年前。 public static void main(String[] args)
我目前正在使用 jquery 循环插件。我有 3 个不同的幻灯片,它们彼此相邻并同时循环播放。我想做的是先关闭第一张幻灯片,然后是第二张幻灯片,然后是第三张幻灯片。无论如何,我可以通过增量或超时来做到
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: ++someVariable Vs. someVariable++ in Javascript 我知道您可以
我一直在查看 SVN 手册,但无法找到“svn log”和“svn st”的“--incremental”选项的简单用法示例或解释。 我正在编写一个开源 SVN GUI 前端,因此我需要一些有关此标志
我有这种矩阵。 非常抱歉,我没有可重现的示例。 表 1: [,1][,2][,3][,4][,5][,6][,7][,8][,9][,10] [1,] 3 NA NA NA
我在hdfs中有一个 Parquet 文件作为我的数据的初始加载。接下来的所有拼花地板只是这些数据集每天都会更改为初始负载(按时间顺序)。这是我的三角洲。 我想读取全部或部分 Parquet 文件,以
我目前有这样的功能,可以将任何输入数字四舍五入到最接近的模糊整数值: $(function(){ $('#my_value').blur(function() { $(this).va
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
我对 SQL 还很陌生,我想知道我是否可以使用它来自动解决我数据库中的一个复杂问题。 也就是说,我每天都在跟踪条目。因此,我们关注的列是: YYYY MM DD XXX YYYY 是年,MM 是月,D
我正在开发一个非常简单的数据库,但我不知道数据透视表是否是一个很好的解决方案。如果我使用数据透视表,我需要添加无用的表只是为了增量。 让我们从头开始。 在用户注册期间,会创建一个新表 GROUP。在G
在 MySQL 中你可以做这样的事情 SELECT @n := @n + 1 n, first_name, last_name FROM table1, (SELECT
如果我正在使用一个类,我知道如何重载运算符 += class temp { public: int i; temp(){ i = 10; } int operator+=(in
我有两个文件:file1、file2。我想从 file2 中获取 file1 中不存在的行。 我读过 post这告诉我使用 grep 的 -v 标志来执行此操作(我阅读了 grep 的手册页,但仍然不
我看了很多类似的题,功能很简单,用于API的嵌套for循环,每分钟可以调用5次。所以我将一年数据的范围设置为 75。你们能帮我解决这个问题吗?提前致谢! 第一部分正在运行,输入列表中的邮政编码。 fo
所以我想计算每日返回/增量的一些时间序列数据,其中每日增量 = value_at_time(T)/value_at_time(T-1) import pandas as pd df=pd.DataFr
请帮我解决这个问题。该表达式之后的步骤是: //Expression offSpring1[m1++] = temp1; //Steps: 1.- increment m1 2.- assign te
我正在开发一个解决方案,在该解决方案中,我通过 webapp 不同类型的实体(例如中央数据库上的用户、组、部门信息)和 ldap 进行身份验证。但是最终用户将与来自远程位置(他的办公室、节点)的数据交
我有以下 Python 数据结构: data1 = [{'name': u'String 1'}, {'name': u'String 2'}] data2 = [{'name': u'String
如果 AtomicInteger 会发生什么?达到 Integer.MAX_VALUE 并递增? 值会回到零吗? 最佳答案 由于integer overflow,它会环绕, 到 Integer.MIN
我是 C 的初学者,我正在尝试在 While 循环中进行 0.00001 增量。例如,double t = 0.00001 并且我希望循环每次以 0.00001 的增量运行,第二次是 0.00002
我是一名优秀的程序员,十分优秀!