简单的 qtip2 示例不起作用
Simple qtip2 example does not work
我正在尝试获取一个简单的 qtip2 演示 运行,但它无法正常工作,需要帮助。
qtip2 是一个允许创建个人工具提示的框架。
如果将鼠标悬停在 link 上,应该会出现一个黄色小框。
所有文件都在同一个文件夹中。
<html>
<head>
<title>My site</title>
<!-- CSS file -->
<link type="text/css" rel="stylesheet" href="jquery.qtip.css" />
</head>
<body>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.qtip.js"></script>
<script type="text/javascript" src="jquery.imagesloaded.pkg.min.js"></script>
<a href="#test" title="My tooltip text">Sample link</a>
<script>
// self executing function here
(function() {
// your page initialization code here
// the DOM will be available here
$('a[title]').qtip();
})();
</script>
<a href="#test" title="My tooltip text">Sample link</a>
</body>
</html>
我删除了不必要的代码,例如加载的图像,并将您拥有的 jQuery link 替换为 CDN 版本。
而且有效。
<html>
<head>
<title>My site</title>
<!-- CSS file -->
<link type="text/css" rel="stylesheet" href="jquery.qtip.css" />
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"> </script>
<script type="text/javascript" src="jquery.qtip.js"></script>
<a href="#test" title="My tooltip text">Sample link</a>
<script>
// self executing function here
(function() { $('a[title]').qtip(); })(); </script>
<a href="#test" title="My tooltip text">Sample link</a>
</body>
</html>
我正在尝试获取一个简单的 qtip2 演示 运行,但它无法正常工作,需要帮助。 qtip2 是一个允许创建个人工具提示的框架。 如果将鼠标悬停在 link 上,应该会出现一个黄色小框。
所有文件都在同一个文件夹中。
<html>
<head>
<title>My site</title>
<!-- CSS file -->
<link type="text/css" rel="stylesheet" href="jquery.qtip.css" />
</head>
<body>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.qtip.js"></script>
<script type="text/javascript" src="jquery.imagesloaded.pkg.min.js"></script>
<a href="#test" title="My tooltip text">Sample link</a>
<script>
// self executing function here
(function() {
// your page initialization code here
// the DOM will be available here
$('a[title]').qtip();
})();
</script>
<a href="#test" title="My tooltip text">Sample link</a>
</body>
</html>
我删除了不必要的代码,例如加载的图像,并将您拥有的 jQuery link 替换为 CDN 版本。
而且有效。
<html>
<head>
<title>My site</title>
<!-- CSS file -->
<link type="text/css" rel="stylesheet" href="jquery.qtip.css" />
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"> </script>
<script type="text/javascript" src="jquery.qtip.js"></script>
<a href="#test" title="My tooltip text">Sample link</a>
<script>
// self executing function here
(function() { $('a[title]').qtip(); })(); </script>
<a href="#test" title="My tooltip text">Sample link</a>
</body>
</html>