window.open
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>
<body>
<form name="form1">
</p>
Height
<input name="wd" type="text" id="wd">
</p>
Width
<input name="ht" type="text" id="ht">
</p>
</p>
</p>
<input name="button" type='button' onClick= "window.ww = window.open('Osysteme.html','ww','width=document.form1.wd.value, height=document.form1.ht.value');" value='open window'>
<input name="button2" type='button' onClick="ww.close();" value='Close window'>
</p>
</form>
</p>
</p>
</body></html>
Цитата:
Originally posted by natulja
window.open('Osysteme.html','ww','width=document.form1.wd.value, height=document.form1.ht.value');
window.open('Osysteme.html','ww','width=document.form1.wd.value, height=document.form1.ht.value');
Код:
window.open('Osysteme.html','ww','width='+document.form1.wd.value+', height='+document.form1.ht.value);