function add()
{
var div1=document.getElementById("div1");
div1.innerHTML=div1.innerHTML+"<table name=tabl"+ num +"><tr><td name=td"+ num +">职位名称:<input type='text' name=resume"+num+" style='width: 155px' />学历<select id=xl"+num+" name=xl"+num+"><option>不限</option><option>初中</option><option>高中/中专技校</option></select>以上,工资<select id=gz"+num+" name=gz"+num+"><option>面议</option><option>1000以下</option><option>1000-2000</option><option>2000-3000</option></select><br>招聘要求:<br><textarea id=Tex"+num+" name=Tex"+num+"></textarea><input id='Button1' type='button' value='删除此职位' onclick=delh("+ num +") /></tr></table>";
num+=1;
document.form1.count.value=num;
}
function delh(){...... }
代码如上 , 页面中有个按钮,点此按钮会触发上面的代码,向div1中添加一个表格,并且添加的表格中有个按钮 要实现点“删除此职位”按钮就 删除此次添加的表格,并且删除按钮传给delh()有指定参数,谁能给指教下 delh(){} 方法里该怎么写呢?