请耐心等待,但我正在提供一些代码来启动lighbox。当用户点击我的链接时,我需要显示一个灯箱。编码的灯箱已经就位,并使用唯一ID启动。我的例子使用(1111)
var eis = $('.ei').sort(function(a,b){
return $(a).html() - $(b).html();
});
eis.each(function(i){
$('body').append($(this).closest('table'))
})
我的链接代码是:
<script src="bootstrap.js" type="text/javascript"></script>
<script type="text/javascript">
lightbox = new fusepump.lightbox.buynow(1111);
var callToActionElement = document.getElementById( "unique-btn");
callToActionElement.addEventListener("click", function()
{ lightbox.show(); //Show the lightbox } );
</script>
出于某种原因,它无法正常工作。我认为语法错误。
答案 0 :(得分:1)
编辑:您已注释掉代码的最后一部分//Show the lightbox } );
括号永远不会关闭,分号不会在代码的末尾,而是在注释中。发表评论/*Show the lightbox*/
您还可以设置onClick属性,您可以在其中调用javascript函数的函数名称。它看起来像这样:
<a href="#" onclick="functionName()" id="unique-btn">Buy</a>