作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有字符串 var mydata="a1,a2,a3, ,a5,b1,b2,b3,b4,b5"
并且我需要分配给下面的这个元素怎么办?:-
Parent Index: 0 (div classname="parts")
.serialno="a1"
.modelno="a2"
.section="a3"
.subsection=" " -empty value
.incharge="a5"
Parent Index: 1 (div classname="parts")
.serialno="b1"
.modelno="b2"
.section="b3"
.subsection="b4 "
.incharge="b5"
我已经知道的是如何将字符串数组直接分配给元素,如下所示:-
var mydata = $("#txtproduction").val();
var gdata = mydata.split(',').length / 5; //get how many group
if (gdata = 1) {
$.each(mydata.split(','), function (index, value) {
if (index == 0) { $('.serialno').val(value); }
if (index == 1) { $('.modelno').val(value); }
if (index == 2) { $('.section').val(value); }
if (index == 3) { $('.subsection').val(value); }
if (index == 4) { $('.incharge').val(value); }
});
}
但是当元素在父元素中有子元素时,我不知道如何处理它......
if (gdata >1){
//if more than 1 group data - how to handle loop assign value to element accondingly??
}
请帮帮我,我已经想了很多天了,但还是想不出如何解决这个问题。提前感谢您阅读和回答我的问题。
最佳答案
元素结构如下:
<div class="parts">
<input type="text" class="serialno">
<input type="text" class="modelno">
<input type="text" class="section">
<input type="text" class="subsection">
<input type="text" class="incharge">
</div>
<div class="parts">
<input type="text" class="serialno">
<input type="text" class="modelno">
<input type="text" class="section">
<input type="text" class="subsection">
<input type="text" class="incharge">
</div>
下面的代码应该可以工作:
var mydata = $("#txtproduction").val();
var arr = mydata.split(',');
$('.serialno').each(function(i, o) {$(this).val(arr[$(this).parent().index(".parts")*5]);});
$('.modelno').each(function(i, o) {$(this).val(arr[$(this).parent().index(".parts")*5+1]);});
$('.section').each(function(i, o) {$(this).val(arr[$(this).parent().index(".parts")*5+2]);});
$('.subsection').each(function(i, o) {$(this).val(arr[$(this).parent().index(".parts")*5+3]);});
$('.incharge').each(function(i, o) {$(this).val(arr[$(this).parent().index(".parts")*5+4]);});
如果结构不同,请纠正我的理解。检查here.
关于javascript - 如何将字符串数组相应地分配给子元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39694461/
我在 Java 中遇到异常处理问题,这是我的代码。当我尝试运行此行时出现编译器错误:throw new MojException("Bledne dane");。错误是: exception MojE
我刚刚开始学习asp.net。在你们的支持下,我希望我能从这个论坛学到更多东西。 我的问题是, 我在 asp.net 页面中有一个 TabContainer1,因为每个选项卡面板中有多个类似 (60)
我是一名优秀的程序员,十分优秀!