0
私はGroovy/Grailsに基づいて日付ピッカーを実行しようとしています。私はHTMLに精通していませんが、ユーザーがクリックして日付を正しく選択してデータベースに保存するとカレンダーが表示される選択領域を管理しました。しかし、私は別のものを作り、それを終了日として使用したい。私は多くのことを試みましたが、私はそれをすることはできませんでした。誰も助けることができますか?これまでのコードです:同じ内容のHTML 2領域
<!DOCTYPE html>
<html>
<head>
<meta name="layout" content="main"/>
<title>WannabeDoodle</title>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
$("#datepicker").datepicker();
});
</script>
</head>
<body>
<center><h1><b>Schedule an event</b></h1></center>
<br>
<center><font color="#2977C1">1. Generals ></font> <b>2. Set the date ></b> 3. Invite</center>
<br>
<g:form controller="SetDate" action="next">
<div class="fieldcontain">
          
<form>
<label for="startDate">Select date</label>
<g:textField name="startDate" id="datepicker" value="${startDate}"/>
</form>
<br><br>
<center>
<a href="http://localhost:8080/Groodle/CreateGenerals"><font color=#2875bd>Back</font></a>
 
<g:actionSubmit class="buttons" value="Next"/>
</center>
</div>
</g:form>
</body>
</html>