0

我正在尝试复制 Nextopia 快速查看弹出窗口的外观。他们正在使用彩盒。我们网站上的一个例子是http://www.hatsinthebelfry.com/category/womens-hats.html

这是当前按钮的 Miva 代码(此处的测试页面:http ://www.hatsinthebelfry.com/category/NEXtest.html )

当前按钮:

<input type="button" value="Quick View" onClick="divwin=dhtmlwindow.open('divbox&mvt:product:id;', 'div', 'somediv&mvt:product:id;', '&mvt:global:JSProdName;', 'width=600px,height=560px,top=20px,scrolling=1, center=1'); return false" style="cursor:hand;" class="nxt_moreinfo">

这是我从 Jack Moore(Colorbox 的开发者)那里得到的代码,但这是为了打开一个 html 页面。我需要打开一个div。

<button onclick='$.colorbox({href:"example.html"}); return false;'></button>

谁能告诉我如何在颜色框语法中正确调用 miva 代码?

4

2 回答 2

0
$.colorbox({ 
rel:'mycontent',
inline:true,
href: function(){var url = $(this).attr('href'); return url;}
});

<a rel="mycontent" href="do-something.php?productid=somevalue">Do Something</a>

以上允许单个颜色框参考。

于 2012-11-29T19:11:59.003 回答
0

据我了解你问这个:

$.colorbox({ href: '#inline_content', inline:true });

和html:

<div style='display:none'>
     <div id='inline_content'>test</div>
</div>
于 2012-10-17T18:17:58.413 回答