jQuery 单选框克隆

发布于 2024-12-01 11:24:13 字数 654 浏览 1 评论 0原文

我在尝试使用 jQuery Mobile 框架克隆无线电字段集时遇到了困难。我通常会使用 .live 事件或 clone(true)

$(".cloneButton").live('click', function() {

    $('#fieldSet1').clone().insertBefore('.cloneButton');

});

但它在这种情况下不起作用。克隆的单选按钮仍然控制原始单选按钮。

如果有人熟悉 jQuery Mobile,我将不胜感激您的帮助。

请参阅此示例 - http://jsfiddle.net/R65cn/

我从 http://jquerymobile.com/demos/1.0b2/#/demos/1.0b2/docs/forms/radiobuttons/index.html

谢谢,

克里斯

I am stuck trying to clone a radio fieldset using the jQuery Mobile framework. I would usually use the .live event or clone(true)

$(".cloneButton").live('click', function() {

    $('#fieldSet1').clone().insertBefore('.cloneButton');

});

However it does not work in this instance. The cloned radio buttons still control the original.

If anyone is familiar with jQuery Mobile I would appreciate your help.

See this example - http://jsfiddle.net/R65cn/

I took the radio sample code from http://jquerymobile.com/demos/1.0b2/#/demos/1.0b2/docs/forms/radiobuttons/index.html

Thanks,

Chris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失退 2024-12-08 11:24:13

这与 Jquery mobile 没有任何关系,但与基本的 HTML / Javascript 规则有关。

因为您使用 .clone() 克隆元素,所以单选按钮(和其他元素)上的所有唯一 id 也会被克隆,并导致 id 重复。浏览器只会使用他们找到的第一个声明的 id,因此这解释了示例中的行为。

当您单击第二个或第三个单选按钮组合时,浏览器将查找 id 为“radio-choice-1”的元素,并在第一次点击后停止(第一个 id 为“radio-choice-1”的单选按钮)单选按钮组合)。

让代码正常工作的唯一方法是为每个克隆元素提供一个唯一的 ID,并将每个标签上的 for 属性值更改为新的唯一 ID。

This hasn't got anything to do with Jquery mobile, but with basic HTML / Javascript rules.

Because you are cloning the elements by using .clone(), all unique id's on the radio buttons(and other elements) are cloned as well and resulting in duplicated id's. Browsers will only use the first declared id they find and so this explains the behavior in your example.

When you click the second or third radio button combination, the browser will lookup the element with the id "radio-choice-1" and stops after the first hit (the radio button with the id "radio-choice-1" at the first radio button combination).

The only way to make your code work is to give each cloned element a unique id and also change the for attribute value on each label in to the new unique id.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文