- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,我有一个表单,我可以在其中动态添加一个新行,其中包含一个文本框和按下按钮时的复选按钮。但是我需要某种方式来知道在发布数据中按下了哪些复选按钮,因此需要一个由每个复选按钮上的 ID 组成的值字段,代码如下所示:
<div id='1'>
<div class="template">
<div>
<label class="right inline">Response:</label>
</div>
<div>
<input type="text" name="responseText[]" value="" maxlength="400" />
</div>
<div>
<input type="radio" name="responseRadio[]" value="" />
</div>
</div>
<div>
<input type="button" name="addNewRow" value="Add Row" />
</div>
</div>
JS 添加新行:
var $template = $('.template');
$('input[type=button]').click(function() {
$template.clone().insertAfter($template);
});
任何人都可以建议一个好方法来帮助我了解帖子数据中的哪个文本字段、链接到哪个复选按钮,并知道它是否被按下了吗?
最佳答案
您可以使用 $('input[type=button]').val() 来获取单击按钮的值属性。或者您可以使用 $('input[type=button]').attr("name") 来获取按钮的属性名称。
要查看单选按钮是否被选中,请使用:$('#test').attr('checked');在这种情况下,您需要为您的复选框提供一个 ID“测试”。
例如:
var $template = $('.template');
$('input[type=button]').click(function() {
var name = $('input[type=button]').attr("name"); //Will return addNewRow
$('#test').attr('checked'); //Will return true or false for the radio/chekbox with the id test
$template.clone().insertAfter($template);
});
关于javascript - 向页面添加新元素时出现 HTML ID 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23041493/
我正在用 Java 编写代码,并且使用 Vaadin 8 扩展。 我有一个 Vaadin 组合盒,效果很好。但我不仅想从组合框中选择项目,还想选择书面输入。这意味着我想使用组合框作为下拉菜单以及文本编
我正在尝试将 AJAX 添加到 JQuery ListView 中并呈黄色闪烁,但我似乎无法使其正常工作。谁能指出我正确的方向? http://jsfiddle.net/zFybm/ 最佳答案 根据
我有这个样式表: .pixel{ position: absolute; height: 10px; width: 10px; background-color: #f
这是我用来将新行推送到容器的一行代码: this.$el.append(new ItemView(item).render().el); 其中item是Backbone.js model,render
我正在尝试在 anguar.js 中制作一些测试应用程序,但遇到了问题。我的 js 文件包含: live = angular.module('live',[]); live.controller('p
如何绑定(bind)页面加载后创建的新元素? 我有这样的东西 system = function() { this.hello = function() { alert
html5 新元素(页眉、导航、页脚等)在 IE 中不工作 最佳答案 您需要包含 HTML5 shiv 脚本以允许在旧版 IE 浏览器中设置 HTML5 元素的样式:http://code.googl
我是一名优秀的程序员,十分优秀!