gpt4 book ai didi

javascript - Colorbox.js 内联内容不会显示

转载 作者:行者123 更新时间:2023-11-28 16:40:05 25 4
gpt4 key购买 nike

我正在尝试将内联内容函数与 colorbox.js 一起使用,但在使用内联函数时它似乎没有显示出来,尽管所有其他函数都可以正常工作。我正在使用未经编辑的 JS 和 CSS 文件。这是代码:

JS

$(document).ready(function(){
$(".inline").colorbox({inline:true, width:"50%", transition:'none'});
});

HTML

<a class="inline" href="#inline_content"><li><h1>Content</h1></li></a>
<div style='display:none'>
<div id='inline_content' style='padding:10px; background:#fff; color:#000;'>
<p>Hello! This is content </p>
</div>
</div>

最佳答案

inline 选项要求您还设置 href 选项。

If true, content from the current document can be displayed by passing the href property a jQuery selector, or jQuery object.

// Using a selector:
$("#inline").colorbox({inline:true, href:"#myForm"});
// Using a jQuery object: var $form = $("#myForm");
$("#inline").colorbox({inline:true, href:$form});

See the documentation .

关于javascript - Colorbox.js 内联内容不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33850286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com