мммм.. спасибо, но я уже разобралась!!если вдруг у кого то похожий вопрос,вот как надо)
<html>
<head>
<script>
function mim(n)
{
for(i=1; i<=n; i++)
document.write(i,' ');
}
</script>
</head>
<body>
<form>
<input type= text name = 'l' value=' '>
<BR>
<input type=button value="OK" onclick="mim(l.value )">
</form>
</body>
</html>
|