好的..我有类似这个设置的东西:
<button id="buynow" disabled>Add to Cart</button>
<div style="display:none">
<div id="purchase_popup">
Content within here
</div>
</div>
然后我的fancybox代码是这样的:
<link rel="stylesheet" type="text/css" href="includes/js/jquery.fancybox-1.3.1.css" />
<script type="text/javascript" src="includes/js/jquery.fancybox-1.3.1.pack.js"></script>
<script type="text/javascript">
$("#buynow").fancybox({
'href' : '#purchase_popup',
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'titleShow' : false
});
</script>
但是由于一些奇怪的原因,当我单击buynow 按钮时,我的purchase_popup div 不会弹出。我已经禁用了它,所以它不会导致不同的页面,因为这是我刚刚参与的这个项目中的当前操作。我不知道fancybox中的'href'是否将其归因于它,或者这是否是错误的做法?
任何帮助,将不胜感激!