日期:2014-05-16 浏览次数:20867 次
<script>
function openwin(o){
window.open("xx.asp?"+o.name);//传递对象的name值
}
</script>
<form name="inputfrm">
<input type="text" name="name1" onclick="openwin(this)"/><br/>
<input type="text" name="name2" onclick="openwin(this)"/><br/>
<input type="text" name="name3" onclick="openwin(this)"/><br/>
</form>
<script>
var s=location.search;//获取name值
if(s==''){
alert('没有传递name!!');
window.close()
}
else s=s.substring(1);//去掉?
</script>
<input type="button" value="设置父页文本框" onclick="opener.inputfrm[s].value=new Date()"/>