在JavaScript中,要使用onClick事件而不是链接来调用jQuery colorbox,可以按照以下步骤操作:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery.colorbox/1.6.4/example1/colorbox.css" />
$("#openColorbox").on("click", function() {
$.colorbox({
href: "your-content-url-here",
open: true
});
});
其中,your-content-url-here
是要在colorbox中显示的内容的URL。
<a href="your-content-url-here" onclick="openColorbox(event);">点击打开colorbox</a>
function openColorbox(event) {
event.preventDefault();
$.colorbox({
href: event.target.href,
open: true
});
}
这样,就可以使用onClick事件而不是链接来调用jQuery colorbox了。
领取专属 10元无门槛券
手把手带您无忧上云