この時点ではスタイリングはありませんが、このようなものはうまくいく可能性があります。
JsFiddle の実行例: http://jsfiddle.net/29vBZ/3/
ここで行ったように、show() と hide() を slideDown() と slideUp() に置き換えて、ある種の目の保養を作成することができます: http://jsfiddle.net/29vBZ/6/
HTML:
<div id="customSelect">
<div id="customSelectCaption"></div>
<div class="customSelectItem" identifier="in_H2O">in H2O</div>
<div class="customSelectItem" identifier="in_HG">in Hg</div>
<div class="customSelectItem" identifier="psi">psi</div>
<div class="customSelectItem" identifier="cm_H2O">cm H2O</div>
<div class="customSelectItem" identifier="cm_HG">cm Hg</div>
<div class="customSelectItem" identifier="kPa">kPa</div>
</div>
JavaScript/jQuery:
$(document).ready(function(){
//hide the options on load
$('#customSelect').children('.customSelectItem').hide();
//give it the caption of the first option as default.
var firstChild = $('#customSelect .customSelectItem');
$('#customSelect').attr('identifier', firstChild.attr('identifier'));
$('#customSelectCaption').html(firstChild.html());
//set a variable so we know in which state it is.
$('#customSelect').data('customSelectState', false);
//bind the click event so you can take action on click.
$('#customSelect').click(function(event){
if($('#customSelect').data('customSelectState') == false)
{
//hide the caption, show the items.
$('#customSelectCaption').hide();
$('.customSelectItem').show();
//set the variable so we know the state is now 'open'.
$('#customSelect').data('customSelectState', true);
}
else
{
//set the new identifier.
$('#customSelect').attr('identifier', $(event.target).attr('identifier'));
//set the new caption.
var newCaption = $(event.target).html();
$('#customSelectCaption').html(newCaption);
//show the caption, hide the items.
$('#customSelectCaption').show();
$('.customSelectItem').hide();
//set the variable so we know the state is now 'closed'.
$('#customSelect').data('customSelectState', false);
}
});
});
現在の値を取得するには、次のようにします。
var currentSelection = $('#customSelect').attr('identifier');
もちろん、これは1つの「偽の」ドロップダウンリストに対してのみ機能しますが、複数に対して同じことを行う完全なjQueryプラグインに拡張できます. これが何らかの形でお役に立てば幸いです。