javascript参数传递问题
发布网友
发布时间:2022-04-30 16:31
我来回答
共2个回答
热心网友
时间:2022-04-24 05:07
<input type="text" name="material_count" id="material_count" size="45" value="试试">
<div id="cell"></div>
<script>
function MM_openBrWindow(a,b){
alert(a+"\n\n"+b);
}
var cell=document.getElementById('cell');
var material_count=document.getElementById('material_count');
cell.innerHTML='<img onclick=MM_openBrWindow("'+material_count.value+'","material") src="../images/fo.gif" border="0">';
alert(cell.innerHTML);
</script>
热心网友
时间:2022-04-24 06:25
用window.open就可以,在open的页面中利用window.opener可以访问打开它的那个页面的变量,也就是window.opener.material_count.value