- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一个旅游网站构建一个表单,其中有一个部分显示“添加参与者”。我使用了数字输入,因此当它设置为“1”时,它会添加一组字段,并重复直到最多 5 个。
我现在附加了一个加号和减号按钮来更改值,使表单看起来更有吸引力,但尽管值正在更改,但它并未注册以显示隐藏字段。
这是我使用附加按钮更改值的代码:
$(".test-fill").append('<div class="inc button">+</div><div class="dec button">-</div>');
$(".button").on("click", function() {
var $button = $(this);
var oldValue = $button.parent().find(".test").val();
if ($button.text() == "+") {
var newVal = parseFloat(oldValue) + 1;
} else {
// Don't allow decrementing below zero
if (oldValue > 0) {
var newVal = parseFloat(oldValue) - 1;
} else {
newVal = 0;
}
}
$button.parent().find(".test").val(newVal);
});
这是我的代码,用于根据值显示隐藏字段:
//Hide the field initially
$("#hide1, #hide2").hide();
//Show the text field only when the third option is chosen - this doesn't
$('#awesome').change(function() {
if ($("#awesome").val() == "1") {
$("#hide1").slideDown();
$("#hide2, #hide3, #hide4, #hide5").slideUp();
}
else if ($("#awesome").val() == "2") {
$("#hide2").slideDown();
$("#hide3, #hide4, #hide5").slideUp();
}
else if ($("#awesome").val() == "3") {
$("#hide3").slideDown();
$("#hide4, #hide5").slideUp();
}
else if ($("#awesome").val() == "4") {
$("#hide4").slideDown();
$("#hide5").slideUp();
}
else if ($("#awesome").val() == "5") {
$("#hide5").slideDown();
}
else {
$("#hide1, #hide2, #hide3, #hide4, #hide5").slideUp();
}
});
这是我的 HTML:
<p>Add participant<br />
<div class="test-fill">
[number number-658 min:0 max:5 id:awesome class:test]
</div>
<div id="hide1">
<h4>Second Participants Information</h4>
<p>Full Name<br />
[text text-995]</p>
<p>Sex<br />
[text text-500]</p>
<p>Age<br />
[text text-379] </p>
<p>Passport Country of Issue<br />
[text text-591] </p>
</div>
<div id="hide2">
<h4>Third Participants Information</h4>
<p>Full Name<br />
[text text-995]</p>
<p>Sex<br />
[text text-500]</p>
<p>Age<br />
[text text-379] </p>
<p>Passport Country of Issue<br />
[text text-591] </p>
</div>
<div id="hide3">
<h4>Fourth Participants Information</h4>
<p>Full Name<br />
[text text-995]</p>
<p>Sex<br />
[text text-500]</p>
<p>Age<br />
[text text-379] </p>
<p>Passport Country of Issue<br />
[text text-591] </p>
</div>
<div id="hide4">
<h4>Fifth Participants Information</h4>
<p>Full Name<br />
[text text-995]</p>
<p>Sex<br />
[text text-500]</p>
<p>Age<br />
[text text-379] </p>
<p>Passport Country of Issue<br />
[text text-591] </p>
</div>
<div id="hide5">
<h4>Sixth Participants Information</h4>
<p>Full Name<br />
[text text-995]</p>
<p>Sex<br />
[text text-500]</p>
<p>Age<br />
[text text-379] </p>
<p>Passport Country of Issue<br />
[text text-591] </p>
</div>
(我正在使用 WordPress 联系表 7)
最佳答案
如果我理解正确的话,你的问题是这样的:单击按钮不会更改选择字段,因此不会执行您的功能。
解决此问题的最简单方法是将代码放置在更改事件中$('#awesome').change(function() {} ...
在函数 (changeTheForm()) 内,然后在调整选择输入的值后调用此函数。
$button.parent().find("#awesome").val(newVal);
// you want your code to run now..
changeTheForm();
您不需要依赖于检测选择更改/选择输入,事实上,在我看来,删除它并稍微修改您的脚本会更好。
不过,在读取未选择任何选项的选择字段的值时,您可能会遇到 NaN 错误。您应该很容易找到解决此问题的方法。
关于javascript - 如何在数字输入中添加加号和减号并更新值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35488708/
我正在 gnuplot 中生成 .eps 数字,以包含在使用 LaTeX 排版的论文中,使用 set terminal postscript eps enhanced "Helvetica" 14 这
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我目前正在做以下作业: CREATE TABLE T_1 (COURSE_NO CHAR(8) PRIMARY KEY, COURSE_NAME CHAR(50) ); CREATE TABLE T_
我最近在 Bash 脚本中发现了这样一个片段: $ echo ${A=3} 现在,我知道 ${A:=3}将设置变量 A如果A是“假的”,或${A:-3}如果 A 将返回 3是“虚假的”。不过,我从未见
是否有“-”减号的 UIBarButtonSystem 图标?与此相反: 谢谢。 最佳答案 不,所有可用的图标都是 here .您可以改用自定义 View 。 关于objective-c - UIBa
我有一个元素,需要它的宽度没有(!)垂直滚动条。 Firebug 告诉我 body 宽度是 1280px。 这些在 Firefox 中都可以正常工作: console.log($('.element'
我无法理解以下内容。在 Clojure 中定义 main 函数时(基于 Leinigen 生成的代码),有一个 -函数名前的符号main . 我访问了 clojure.com 上的原始文档,发现 de
我在图形的 Scala 实现中遇到过这个运算符(您可以找到示例 here ,其中两个列表插入运算符 -- 和两个 Maps。 abstract class GraphBase[T, U] { ca
我以前从未处理过正则表达式。对于仅包含数字 (0-9)、加号 (+) 和减号 (-) 以及井号 (#) 的字符串,我应该使用什么组合?顺序并不重要。 最佳答案 很简单: [0-9+#-]+ 演示:ht
我想使用加号/减号图标而不是向下箭头。我已经尝试过,但我不知道什么时候必须添加减号图标或加号图标。请指导我非常感谢 最佳答案 这件事让我发疯 在..\catalog\view\theme\YOURTH
我有以下 jQuery 菜单,您也可以在 JSfiddle here 中找到它: $(document).ready(function () { $(".main_menu_01, .main
我为一个简单的菜单开发了以下代码: $(document).ready(function () { $(".main_menu_01, .main_menu_02").on('click',
char sign = '+'; cout > sign; if ( sign != '+' || sign != '-' ) { cout << "you c
Linux:减号 -* 在行尾的 bash 脚本中意味着什么: tar -czvf $pfad/toolkitdb.log.`date -d "yesterday" +%Y-%m-%d`.tar.g
在 cron 语法中,行首的加号和减号是什么意思? + 0 9 * * * /usr/bin/curl -k http://www.example.com/cron/deactivate_users
有没有办法随机化加号或减号字符?我有一个程序,其中一个 Sprite 在屏幕上移动,当你点击它时,它会重新出现在不同的地方。我也希望它移动的方向也是随机的。目前我只能将它设置为从左到右+,或者从右到左
问题 我正在尝试使用名为 data-maxchars 的属性声明一个匿名类型. 因为减号是一个运算符,它将我想要的属性名称降级(?)为一个操作,我得到一个编译错误:Invalid anonymous
public void Foo(double d){ // when called below, d == 2^32-1 ... } public void Bar(){ ui
在 ERb 序列末尾使用“-”(减号)有什么意义? 例子: FooBar Sometext 无论我是否使用'-',浏览器都会呈现相同的输出。 谢谢,Aplha。 最佳答案 在 Rails 3
我的问题很简单,但我没有找到答案。 我想从 git diff 中的每一行中删除前导加号/减号。在你问我为什么要这样做之前,请允许我概述一下我的理由: 恰好 80 个字符的行会溢出一个字符,这看起来很尴
我是一名优秀的程序员,十分优秀!