0

我正在使用带有 Qtip 的 Jquery 1.4.4,并且我正在尝试为每个单独的列表项加载图像,所以我使用的是 Content: URL:.attr(rel),但它不会加载 REL 的 url

<script type="text/javascript">
// Create the tooltips only on document load
$(document).ready(function() {
$('ul.list-one li a[href]').each(function(){
  $(this).qtip({
     Content: { url: $(this).attr('rel') },
     position: {
     corner: {
        target: 'topMiddle',
        tooltip: 'bottomMiddle'
                }
                },
     style: {
       tip: 'bottomMiddle',
       border: { width: 2, radius: 2, color: '#A9D041' },
     background: '#fff',
     padding:0,
     width: 175,
     height:100
       }  

   });
});
});
</script>




 <ul class="list-one">
 <li class="header">Project Management</li>
 <li><a href="#">BGC Bremerholm</a></li>
 <li><a href="#">Medtronic</a></li>
 <li><a href="#">Straumur - Burdaras Bank</a></li>
 <li><a href="#">Straumur Reykjavik</a></li>
 <li><a href="#">Straumur Stockholm</a></li>
 <li><a  rel="/test/test.html" href="#">T. Rowe Price</a></li>

 </ul> 
4

3 回答 3

1

您可以简单地使用来自 jquery 的 each 来获取所有元素并将 qtip 应用于它们。您可以通过这种方式轻松操作它们。

$('.qtip').each(function(){
    $(this).qtip({
      content: { url: $(this).attr('rel'), method: 'get' },

      style: {
         padding: '7px 13px',
         width: {
            max: 510,
            min: 0
         },
         tip: true
      }
    });
  });
于 2011-08-27T10:47:49.373 回答
0

goetz,document.ready() 函数意味着您不需要将它放在页面底部,它会等待页面加载后再触发。

我将它用于最近的一个项目,它工作得很好:)

$('.test').each(function(){
        $(this).qtip({
          content: { text: '<img src="' + $(this).attr('href') + '" />' },
          show: { delay: 0 },
        });
      });
于 2011-03-23T06:26:06.510 回答
0

内容应为小写 c

content: { url: $(this).attr('rel') },
于 2011-02-02T09:16:19.597 回答