隐藏选择框中选定的选项
我注意到 form select 元素和 jQuery .fadeOut / .hide 的奇怪行为
有简单的 select 框:
<select name="categories">
<optgroup label="Choose option:">
<option selected="selected" value="placeholder">CHOOSE OPTION</option>
<option value="category-books">Books</option>
<option value="category-music">Music</option>
</optgroup>
</select>
我 使用 jQuery,当用户使用以下代码单击 select 时,我想删除 option:selected (我在这种框中模拟占位符的方式):
$('select').click(function() {
$('option[value=placeholder]').fadeOut('slow');
});
$('select').blur(function(){
$('option[value=placeholder]').fadeIn('slow');
});
此代码在 Firefox 中有效并且 <强>选项点击后平滑淡出,但在其他浏览器(IE9,Opera,Chrome)中这不起作用:-[在这里你可以检查一下:http://jsfiddle.net/cachaito/Xy7DF/3/
我尝试了.remove(有效)并且< strong>.hide (不)但我想要一个动画来隐藏这个元素...
PS。您是否知道当用户离开 select 框时淡入 option 元素的更好方法(焦点与 .blur 的工作方式相同)?
I noticed strange behaviour with form select element and jQuery .fadeOut / .hide
I have simple select box:
<select name="categories">
<optgroup label="Choose option:">
<option selected="selected" value="placeholder">CHOOSE OPTION</option>
<option value="category-books">Books</option>
<option value="category-music">Music</option>
</optgroup>
</select>
And with jQuery I wanted to remove option:selected (my way to emulate placeholder in this kind of box) when user click select with this code:
$('select').click(function() {
$('option[value=placeholder]').fadeOut('slow');
});
$('select').blur(function(){
$('option[value=placeholder]').fadeIn('slow');
});
This code in Firefox works and option smoothly fades out after is clicked, but in other bowsers (IE9, Opera, Chrome) this does'nt work :-[ Here You can check this out: http://jsfiddle.net/cachaito/Xy7DF/3/
I tried .remove (works) and .hide (doesn't) but I wanted an animation to hide this element...
PS. Do You know better way to fadeIn option element when user leaves select box (focusout works the same way like .blur)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试更改
这
就是我在代码中隐藏“选项”的做法
Try Changing
with
This is what I do in my code to hide an "option"