Сообщение от phenix79
|
не хотелось бы чтобы лишние элементы типа DIV или BR присутствовали в форме
|
В них нет ничего страшного...
Сообщение от phenix79
|
Как сделать так чтобы для каждого созданного INPUTа присваивался определенный ID ?
|
Менять соответствующее свойство...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
#MyForm > input {
float: left;
clear: both;
}
</style>
<script type='text/javascript'>
function myFunction() {
var btn = document.createElement("input");
btn.id='MyInput'+document.querySelectorAll('#MyForm > input').length;
document.getElementById('MyForm').appendChild(btn);
}
</script>
</head>
<body>
<p>Click the button to make a BUTTON element.</p>
<button onclick="myFunction()">Try it</button>
<form id="MyForm"></form>
</body>
</html>