<div class="span3">
<label>Restaurants <span class="f_req">*</span></label> <select
id="rest_id" name="rest_id"
data-placeholder="- Select Restaurants -" class="chzn-select"multiple ">
<%
List <restaurant> rest_list=restaurantLocalServiceUtil.getAllRestaurantByOrganizationId(themeDisplay);
for(int i=0;i<rest_list.size();i++) {
%>
<option id="<%=rest_list.get(i).getPrimaryKey()%>"
value=<%=rest_list.get(i).getPrimaryKey()%>><%=rest_list.get(i).getName().toString()%>
</option>
<%
}
%>
</select> <span id="restError3" style="color: #C62626;" class="help-block"></span>
</div>
上記は、複数選択ボックスにレストランをリストする jsp コードの私の 1 つの部門のスニペットです。私がやりたいのは、リストボックスまたは選択したレストランにあるレストラン名にマウスオーバーすると、レストランに関するその他の詳細をツールチップとして表示したいということです...ツールチップの詳細(レストランの都市、住所、またはState) ..どうすればそれを示すことができますか?誰か教えてもらえますか?