ここでの質問は、クリックして開くのではなく、フィールドにホバーしたときにオプションの説明が表示される選択ボックスを作成することです。 options.
この機能を実現するために、次のような JavaScript アプローチを利用しました。
$('#selectUl li:not(":first")').addClass('unselected'); // Hide the 'unselected' elements in the ul. $('#selectUl').hover( function(){ // mouse-over $(this).find('li').click( function(){ $('.unselected').removeClass('unselected'); // removes the 'unselected' style $(this).siblings('li').addClass('unselected'); // adds 'unselected' style to all other li elements var index = $(this).index(); $('select option:selected').removeAttr('selected'); // deselects the previously-chosen option in the select $('select[name=size]') .find('option:eq(' index ')') .attr('selected',true); // assumes a 1:1 relationship between the li and option elements }); }, function(){ // mouseout (or mouseleave, if they're different, I can't remember). });
このアプローチでは、選択されていないクラスを利用して、最初は最初のオプションを除くすべてのオプションを非表示にします。 ul の上にカーソルを置くと、クリックされていない要素には unselected クラスが与えられ、実質的に消えます。選択した要素は表示されたままになり、その対応する値が基礎となる選択フィールドに反映されます。
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3