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.
ラジオボタン(横にテキスト付き)のあるWebページがあります。 PC/Macのブラウザ(IE、Chrome、Safari)でラジオボタンをテキストで選択できます。 ただし、iPad のサファリではテキストで選択することはできません。ラジオドットでのみ選択できます。
コアだと思うiOS UIWebViewに埋め込みたいのはサファリです。
iPadでラジオのテキストで選択できるのを解決するには?
はい、「for」属性をサポートしていません。多分あなたはjsで扱うことができます
<label for="radio" onclick="document.getElementById('radio').setAttribute('checked', '');">TestTest</label>
またはグローバル jQuery
$('label[for]').click(function(){ $('#'+$(this).attr('for')).attr('checked','checked'); });