gpt4 book ai didi

javascript - jQuery 简单克隆插件 - 更改输入名称格式

转载 作者:行者123 更新时间:2023-11-30 18:11:10 25 4
gpt4 key购买 nike

我正在使用简单的克隆插件。这是github page该插件的。

截至目前,它会生成类似

的输入名称
user[projects][0][name]
user[projects][1][name]
user[projects][2][name]

谁能告诉我如何生成像这样的名字

user[projects_name][0][1]
user[projects_name][1][1]
user[projects_name][2][1]

我已经创建了一个 jsfiddle 来向您展示演示。

http://jsfiddle.net/Viruthagiri/YLSdQ/1/

我认为这是生成 id 的函数。

// append a initial number to elements id, if options[:nested] true, also assign a initial number to the element name
e.find("input, select").each(function(){
var old_id = $(this).attr("id");
$(this).attr("id", old_id+'_0');
if(option.nested == true) {
var old_name = $(this).attr("name");
var reg = /\[\w*\]$/;
var match = reg.exec(old_name);
var new_name = old_name.substr(0, match.index) + "[0]" + match[0];
$(this).attr("name", new_name);
}
})
$.fn.regenerate_names = function(number){
$(this).find("input, select").each(function(){
var old_name = $(this).attr("name");
var old_number = old_name.match(/.*\[(\d+)\]/)[1]; // find the last match
var old_number_index = old_name.lastIndexOf(old_number);
var new_name = old_name.substring(0,old_number_index) + number + old_name.substring(old_number_index+1);
$(this).attr("name", new_name);
});
};

这是 full source code

最佳答案

我是插件作者pake007。我已经更新了插件以支持您的要求。请在github上克隆最新版本的simple-clone,对于你的问题,我想你可以试试下面的代码:

<div class='project_group'>
<input id="user_projects_name" name="user[projects_name][1]" type="text" />
</div>

$(".project_group").simple_clone({
label: "Project Name ",
label_colon: true,
nested: true,
start: 1
});

新选项“start”用于设置输入名称中第一个数组索引的开始,默认为0。

以上代码将生成如下输入名称:

user[projects_name][1][1]
user[projects_name][2][1]
user[projects_name][3][1]

关于javascript - jQuery 简单克隆插件 - 更改输入名称格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14551043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com