Parašė _Tomas· 2008 Geg. 27 20:05:11
#4
Checkbox tai kažkas panašaus?
<html>
<head>
<script type="text/javascript">
function createOrder()
{
coffee=document.forms[0].coffee;
txt="";
for (i=0;i<coffee.length;++ i)
{
if (coffee[i].checked)
{
txt=txt + coffee[i].value + " ";
}
}
document.getElementById("order").value="Klausimas " + txt;
}
</script>
</head>
<body>
<p>How would you like your coffee?</p>
<form>
<input type="checkbox" name="coffee" value="cream">Atsakymas <br />
<input type="checkbox" name="coffee" value="sugar">Atsakymas <br />
<br />
<input type="button" onclick="send()" value="OK">
<br /><br />
</form>
</body>
</html>
Ir kas tą radio :|
Redagavo _Tomas· 2008 Geg. 27 20:05:29