在php中获取js克隆表的数据
前端 a.html
* 专业 | |
专业描述 |
继续添加
当我单击继续添加会在下面出现一个新的table,用到表克隆。代码如下
function add_education(){
var div_id=document.getElementById("job_info_two");
var content=div_id.children[0].cloneNode(true);
div_id.appendChild(content);
}
问题:请问如何在php中获取原来表的内容和克隆后表的内容。就是获取添加后所有表的内容,在a.php文件中如何获得,求大神帮忙
js
javascript
php
分享到:
------解决方案--------------------
$arr = $_POST["job_major_one"];
if(is_array($arr)){
foreach($arr as $v2){
echo "$v2
";
}
}
?>
* 专业 | |
专业描述 |
继续添加
function add_education(){
var div_id=document.getElementById("job_info_two");
var content=div_id.children[0].cloneNode(true);
div_id.appendChild(content);
}