当列表框上的鼠标值为什么时,如何显示标题或工具提示?如下图所示?
答案 0 :(得分:6)
参见example ::
<!-- 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>
答案 1 :(得分:-1)
HTML:
<select id="sel">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
的javascript:
$(document).ready(function(event) {
$('#sel').mouseenter(function(e) {
this.title = $("#sel option:selected" ).text();
});
});