Kostyk92,
ам!
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1251" />
<title>Удаление элемента списка двойным щелчком</title>
<script language="JavaScript">
function spisok(k) {
for (var n = 1; n <= k; n++) {
var list = document.getElementById('list');
var li = document.createElement('LI');
li.ondblclick = function () {
list.removeChild(this);
}
li.innerHTML = "Элемент списка №" + n;
list.appendChild(li);
};
}
</script>
</head>
<body>
<form name="form1">
<input type="number" name="kolichestvo" min=0 value="10">
<input type="button" name="generate" value="Сгенерировать список" onclick="spisok(document.form1.kolichestvo.value)">
</form>
<ul id="list" >
</ul>
</body>
</html>