我正在使用SimpleTip插件在我的网站中显示弹出消息。我想在页面加载时立即显示文本,而不是在悬停或Click事件上显示。有没有办法做这样的事情?我尝试使用show(),假设工作,但无法使其工作。
$("#myDiv").simpletip({
fixed: true,
position: 'bottom'
}).show();
有谁知道它有什么问题吗?提前谢谢。
答案 0 :(得分:0)
确保将这些标签插入头部:
<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>
它的工作。