Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTMLドキュメントで30行を使用せずに、範囲内のすべての数字(つまり1から30)のエントリを持つhtmlのselect要素を簡単にセットアップすることは可能ですか?
PHP を使用することに抵抗がない場合は、PHP を使用すると非常に簡単に使用できます。
<select> <?php for($i = 1; $i<31; $i++){ echo "<option value='$i'>$i</option>"; } ?> </select>