我已经下载了一个“Jquery datedropper”并希望它将它实现到我的表单中,但遗憾的是javascript-Code不会通过“id”或“name”指定一个表单字段。 Picture of the Problem
现在,在每个领域都实施了约会者。
守则就是这样:
<!doctype html>
<html>
<head>
<!-- custom css -->
<link href="datedropper.css" rel="stylesheet" type="text/css" />
<!-- jQuery lib -->
<script src="jquery-3.2.1.js"></script>
<!-- dateDropper lib -->
<script src="datedropper.js"></script>
</head>
<body>
<form action="profil_update.php" method="post">
Adresse: <input id="adress" name="adress"><br>
Hausnummer: <input id="adressnumber" name="adressnumber"><br>
Weitere Adresszeile: <input id="adress2" name="adress2"><br>
Stock: <input id="floor" name="floor"><br>
Tür: <input id="door" name="door"><br>
Postleitzahl: <input id="zipcode" name="zipcode"><br>
Stadt: <input id="city" name="city"><br>
Land: <input id="country" name="country"><br>
Staat: <input id="state" name="state"><br>
Telefonnummer: <input id="phone" name="phone"><br>
Geburtsdatum: <input type="text" id="birthday" name="birthday" data-lang="de" data-default-date="01-01-1980" data-min-year="1930" data-format="d.m.Y" />
<script>
$('input').dateDropper();
</script>
<br>
Geschlecht: <input id="gender" name="gender"><br>
Beziehungsstatus: <input id="relationship" name="relationship"><br>
<input type="submit" value="Profil vervollständigen">
</form>
<form action="welcome.php" method="post">
<input type="submit" value="Überspringen">
</form>
</body>
</html>
如果有人可以帮助我真的很好。问候斯文
而且,我是初学者+编程。
答案 0 :(得分:0)
看起来你只想在Geburtsdatum字段中使用它,所以
$('#birthday').dateDropper();
是你如何定位的。