这些天我阅读并了解更多关于我的问题!代码在这里:
<div align="right" id="parent" name="parent">
<select name="select30" id="select30" value=""/>here inside i have options values and work dynamically with query to my DB</select>
<input type="button" id="moreFields" value="+" onclick=""/> //add select tags
<input type="button" value="-" onclick="" /> //remove select tags
<div name="child" id="writeclone"></div> //here cloned the child from parent DIV
</div>
<input type="button" name="enter" id="" value="ENTER" onclick="getoptionvalues();"/>
我的问题是如何在+按钮触发时从子DIV获取名称或ID。当此按钮触发时在Child DIV中创建子DIV !!任何人都可以帮助我纠正我的JAVASCRIPT代码
<script>
function getoptionvalues() {
var parent=document.getElementById('parent');
for (var count=0;count<parent.childNodes.length;count++) {
if(parent.childNodes[count].tagName =='DIV') {
alert ('parent.childNodes[count]');
}
}
}
</script>
答案 0 :(得分:2)
正如ThiefMaster指出的那样,'parent.childNodes[count]'
应为parent.childNodes[count]
。然后要获取ID,它只是.id
,名称是.name
if(parent.childNodes[count].tagName =='DIV') {
alert (parent.childNodes[count].id);
alert (parent.childNodes[count].name);
}
答案 1 :(得分:0)
至少,您需要为onClick添加方法名称:
<input type="button" id="moreFields" value="+" onclick="$:getoptionvalues()"/>
然后,使用jquery,你可以获取某种类型的组件数组,然后循环w / alerts:
function getoptionvalues() {
var dropdownMenus = $("select");
dropdownMens.each(function () {
var id = $(this).id;
alert(id);
});
}