- Автор темы
- Заблокирован
- #1
Доброго времени суток! Есть примерно след. конструкция
Нужно по нажатию на кнопку newform_add вставлять после
тот же самый код. То есть тупо добавлять поля.
Думал сделать так
но как выбрать необходимый мне селектор? То есть что записать в $('')
Спасибо!
HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>Неназванный 1</title>
</head>
<body>
<form class="form-horizontal">
<fieldset>
<div class="control-group">
<span class="control-label">Metadata</span>
<div class="controls form-inline">
<label for="inputKey">Key</label>
<input type="text" class="input-small" placeholder="Key" id="inputKey">
<label for="inputValue">Value</label>
<input type="password" class="input-small" placeholder="Value" id="inputValue">
</div>
</div>
<button type="button" id="newform_add" class="btn btn-success btn-lg btn-block"><i class="icon-plus icon-white"></i>добавить</button>
</fieldset>
</form>
<script type="text/javascript">
<!--
jQuery(document).ready(function($){
$('#newform_add').click(function(){
})
})
-->
</script>
</body>
</html>
HTML:
<div class="control-group">
<span class="control-label">Metadata</span>
<div class="controls form-inline">
<label for="inputKey">Key</label>
<input type="text" class="input-small" placeholder="Key" id="inputKey">
<label for="inputValue">Value</label>
<input type="password" class="input-small" placeholder="Value" id="inputValue">
</div>
</div>
Думал сделать так
HTML:
$('').after(Data);
Спасибо!