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.
我有一个带有单选按钮的网页(旁边有文字)。 单选按钮可以通过 PC/Mac 浏览器(IE、Chrome、Safari)中的文本进行选择。 但它不能在 iPad 的 safari 中通过文本选择。只能通过单选点来选择。
我想将它嵌入到 iOS UIWebView 中,我认为它的核心是 safari。
如何解决它可以通过 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'); });