gpt4 book ai didi

css - 在iphone中隐藏 'option'元素

转载 作者:太空宇宙 更新时间:2023-11-04 13:38:01 29 4
gpt4 key购买 nike

这是html:

<select>
<option style="display:none;">1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>

这是 Chrome - 桌面版的结果

Chrome Desktop

这是 iPhone - Safari 中的结果

iPhone Safari

jsbin

最佳答案

您可以使用 jQuery 禁用或删除它

演示 http://jsfiddle.net/Fa8Xx/1728/

<select>
<option class="targetThis">1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>

jQuery

function isiPhone(){
return (
(navigator.platform.indexOf("iPhone") != -1) ||
(navigator.platform.indexOf("iPod") != -1)
);
}
if(isiPhone()){
$(".targetThis").attr('disabled', true);
}

关于css - 在iphone中隐藏 'option'元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22892275/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com