CakePHP フォーム ヘルパーを使用して --Select-- をデフォルト値として表示し、この値がデフォルトで選択されるようにしたいと考えています。
現在のコード:
echo $this->Form->month('m');
echo $this->Form->day('d');
echo $this->Form->year('y');
ありがとう。
CakePHP フォーム ヘルパーを使用して --Select-- をデフォルト値として表示し、この値がデフォルトで選択されるようにしたいと考えています。
現在のコード:
echo $this->Form->month('m');
echo $this->Form->day('d');
echo $this->Form->year('y');
ありがとう。
これはシェイクの答えよりも正しいです:
echo $this->Form->month('m', array('empty' => __('-- Select --')));
JavaScript を必要とせず、将来的に簡単に翻訳できます。これはすべてAPI リファレンスに明確に書かれています。
これを使うかもしれません。
<script type="text/javascript">
$('#UserCreatedMonth :nth-child(1)').text('-- Select --');
$('#UserCreatedDay :nth-child(1)').text('-- Select --');
$('#UserCreatedYear :nth-child(1)').text('-- Select --');
</script>