gpt4 book ai didi

jquery - 使用 jQuery 在列表框中选择的值中显示工具提示

转载 作者:行者123 更新时间:2023-12-01 00:12:07 26 4
gpt4 key购买 nike

当鼠标放在列表框值上时如何显示标题或工具提示,如下图所示?

enter image description here .

最佳答案

参见示例::

<!-- Include custom code to handle the tooltip -->
<script type="text/javascript">
//After loading the page insert the title attribute.
$(function(){
$("select option").attr( "title", "" );
$("select option").each(function(i){
this.title = this.text;
})
});

//Attach a tooltip to select elements
$("select").tooltip({
left: 25
});
</script>

<!-- When moving the mouse over the below options -->
<select>
<option>very long option text 1</option>
<option>very long option text 2</option>
<option>very long option text 3</option>
<option>very long option text 4</option>
<option>very long option text 5</option>
<option>very long option text 6</option>
</select>

关于jquery - 使用 jQuery 在列表框中选择的值中显示工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5157927/

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