我在我的文本框上使用jquery ui工具提示,我已经定义了一个像这样的自定义类
.ui-tooltip1 { padding: 8px; position: absolute; z-index: 9999; max-width: 300px; -webkit-Box-shadow: 0 0 5px #aaa; Box-shadow: 0 0 5px #aaa; background-color:white !important; color: Red !important; }
我这样使用它:
$(".phone").tooltip({ tooltipClass: "ui-tooltip1" });
但是,当我第一次加载页面时,不会应用此类.在页面加载默认工具提示类已应用.如何在页面加载时在工具提示中应用此类?
请建议.
解决方法
只需使用
$(document).ready
$(document).ready(function() { $(".phone").tooltip({ tooltipClass:"ui-tooltip1" }); });