0

我正在使用 SimpleTip 插件在我的站点中显示弹出消息。我想在页面加载时立即显示文本,而不是在悬停或单击事件上。有没有办法做这样的事情?我尝试使用 show(),假设它可以工作,但无法使其工作。

$("#myDiv").simpletip({ 
    fixed: true, 
    position: 'bottom'
}).show();

有谁知道它有什么问题?提前致谢。

4

1 回答 1

0

make sure for insert these tags in head:

<link href="code.css" rel="stylesheet" type="text/css" />
<link href="simpletip.css" rel="stylesheet" type="text/css" />
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.simpletip-1.3.1.min.js" type="text/javascript"></script>
<script src="jquery.simpletip-1.3.1.pack.js" type="text/javascript"></script>

its worked.

于 2012-06-18T10:54:54.310 回答