我今天完成了我的標記工作,並開始研究代碼。所以我們在這裏是我的標記代碼。複選框兩個複選框正在檢查
<form action="" id='createchar'>
<div id="wrapper">
<!-- Main -->
<section id="main">
<header>
<h1>Create New Character</h1>
<input type="text" style="margin-top: 10px; width: 1000px;" name="username" placeholder="პერსონაჟის სახელი"/>
<input type="checkbox" value="1" id="checkboxFourInput" name="male"/>
<label for="checkboxFourInput" style="margin-left: 9px;">კაცი</label>
<input type="checkbox" value="2" id="checkboxFourInput2" name="female"/>
<label for="checkboxFourInput2" style="margin-right: 810px;margin-top: 15px;">ქალი</label>
<input type="text" style="margin-top: 10px; width: 1000px;" name="explainmg" placeholder="განმარტეთ METAGAMING-ი"/>
<input type="text" style="margin-top: 10px; width: 1000px;" name="explainpg" placeholder="განმარტეთ POWERGAMING-ი"/>
<textarea rows="10" cols="10" name="charbio" placeholder="დაწერეთ თქვენი პერსონაჟის ბიოგრაფი" style="margin-top: 10px; width: 1000px;"></textarea>
</header>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="copyright">
<li>© <a href="http://ls-rp.ge">LS-RP.GE</a></li><li>Design</li>
</ul>
</footer>
</div>
</form>
我有這個問題。兩個複選框正在檢查,但我想避免它。我怎麼做到的?
應該使用無線電代替。確保將它們添加到同一組 – Jaya