Skip to content

Instantly share code, notes, and snippets.

@skylying
Created March 5, 2014 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skylying/9365324 to your computer and use it in GitHub Desktop.
Save skylying/9365324 to your computer and use it in GitHub Desktop.
三欄生日
<tr>
<td><label for="birthday">生日</label></td>
<td>
<input class="form-control input-sm custom-input-sm" id="birthday" type="text" placeholder="西元年份" />
<select class="form-control input-sm custom-input-sm" id="birthday">
<option value="">月份</option>
{% for i in 0..11 %}
<option value="">{{ i + 1 }}月</option>
{% endfor %}
</select>
<select class="form-control input-sm custom-input-sm" id="birthday">
<option value="">日期</option>
{% for i in 0..30 %}
<option value="">{{ i + 1 }}日</option>
{% endfor %}
</select>
</td>
</tr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment