用js脚本将所有的select加上title,当鼠标放上去后,会显示完整的提示信息。
代码:
<script language="javascript"> /** * select添加title提示 * by www.jb200.com */ function BatchSetTitle() { var selects = $("select") var selectcount = $("select").size(); for (i = 0; i < selectcount; i++) { var select = selects.eq(i); var id = $(select).attr("id") var option = $("#" + id + " option") var count = $("#" + id + " option").size(); for (j = 0; j < count; j++) { var suboption = option.eq(j) var text = $(suboption).html() $(suboption).attr("title", text); } } </script>
代码使用:
在body onload时加载此方法就可以了。