class SaveImg():
def __init__(self, new_dir_name, images_url):
os.chdir('images')
os.mkdir(str(new_dir_name))
os.chdir(str(new_dir_name))
count = 1
for img in images_url:
img_name = str(count) + '.jpg'
try:
urlretrieve(img, img_name)
count += 1
except ContentTooShortError as e:
print(e)
continue
os.chdir('..')
os.chdir('..')
<div class="fields">
<!-- Здесь будут добавляться поля -->
</div>
<button id="add-field">Добавить поле</button>
<input type="submit" value="Отправить">
$('#add-field').click(function() {
var new_field = '<input type="text" name="nf[]">';
$('.fields').append(new_field);
});
$data=$_POST['nf'];
foreach ($data as $item -> $key) {
}
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>
(function($) {
$('body').on('swipeleft', mySwipeLeft);
$('body').on('swiperight', mySwipeRight);
function mySwipeLeft(event) {
// код для левого свайпа
}
function mySwipeRight(event) {
// код для правого свайпа
}
})(jQuery);
</script>
get_field('название поля для получения инфы из кода')