我有一個提示,當用戶點擊鏈接時顯示。當顯示提示時,我希望它有一個標題,但不想顯示標題。創建提示標題
$('#spouseMortalityImage').cluetip({
titleAttribute: 'alt',
titleAttribute: 'Title',
sticky: 'true',
closeText: '<img align="right" width="16px" height="16px" src="../images/buttonTip.gif" alt="close" />',
closePosition: 'title',
ajaxSettings:{
data:{
age:"<%= personalInfoBean.getSpouseAge()%>",
gender:"<%= personalInfoBean.getSpouseGender()%>",
country:$("input[name=planningCountry]").val(),
}
}
});
我希望顯示標題,但不顯示標題。這是使用的HTML。
<td class="centerAlignedContext" width="50%">
<pp:text name="personalInfoBean" property="clientMortality" size="8" maxlength="3" style="text-align:center;" styleClass="wamoney" />
</td>
<td width="20%">
<a class="title" href="#" title="Chance of Survival"></a>
<img id="clientMortalityImage" style="height:15px;" src="../images/suggestion.jpg" rel="ProbabilityOfSurvival.do"/>
</td>
什麼是你的html樣子?你也有兩個'titleAttribute'屬性。 – Jack