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.
「チェック」がありますか?
たとえば...POSTに送信するパラメータを含む辞書があります。
params = {'text':'how are you?', 'subject':'hi'}
それなら私は
opener.open('theurl',urllib.urlencode(params))
問題は...これらのパラメータはテキストボックスでうまく機能します。値をそこに入れるだけだからです。ラジオボタンはどうですか?どちらが「チェック」されているかをどのように示しますか?
ラジオボタンにも値があります
<input type="radio" name="music" value="Rock" checked="checked"> Rock<br> <input type="radio" name="music" value="Pop"> Pop<br> <input type="radio" name="music" value="Metal"> Metal<br>
その場合、パラメータの{"music":"Rock"}