这是我对Qtip的编码。但它不会工作。我不知道为什么?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Qtip</title>
<script type="text/javascript" src="/jquery demos/jquery1.4.2.js"></script>
<script type="text/javascript" src="jquery.qtip-1.0.0-rc3.js"></script>
<script>
$(document).ready(function()
{
// Match all link elements with href attributes within the content div
$("#content a[href]").qtip({
content: 'This is an active list element',
show: 'mouseover',
hide: 'mouseout'
});
});
</script>
</head>
<body>
<a href='#' id="content" class="qtip">sdfsfsd</a>
</body>
</html>
提前致谢?
答案 0 :(得分:1)
您的选择器正在查看<a href="something">
内部 #content
,因此请删除该部分,如下所示:
$("#content").qtip({
content: 'This is an active list element',
show: 'mouseover',
hide: 'mouseout'
});
选择器之间的空格意味着查找前一个选择器的匹配项的后代 ...已修正但过度杀伤的选择器将如下所示:"a[href]#content"
,但是......这太过分了(因此效率低下)。您正在使用的选择器用于#content
元素内部链接,如下所示:
<div id="content">
<a href='#' class="qtip">sdfsfsd</a>
</div>
或者只使用您已有的qtip
课程,如下所示:
$(".qtip").qtip({
content: 'This is an active list element',
show: 'mouseover',
hide: 'mouseout'
});