我是编程的新手,我想问一些关于Javascript的事情。
如何在加载页面时显示此脚本?
我希望用这个jQuery弹出“1人在线”。
$(document).ready(function() {
$.sticky('1 user seen this hotel!');
});
你能告诉我如何使用它以及如何修改它吗?
我从http://www.jqueryrain.com/?uOBwr_rL
获得此功能请帮帮我。
谢谢,gbu
答案 0 :(得分:0)
如果您不需要粘性功能(例如,如果用户可以关闭窗口),您可以使用提醒:
$(document).ready(function() {
alert('1 user seen this hotel!');
});
或jquery对话框:http://jqueryui.com/dialog/
答案 1 :(得分:0)
示例HTML页面
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="sticky.min.js"></script>
<link rel="stylesheet" href="sticky.min.css" type="text/css" />
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$.sticky('The page has loaded!');
});
</script>
</body>
</html>
请确保将此html内容作为HTML页面保存在与sticky.min.js&amp;相同的目录中。 sticky.min.css文件。