以编程方式在 Facebox 中打开 div
使用 Facebox 的文档,我尝试以编程方式弹出 Facebox,Facebox 内容是 div 的内容是在文档中。
问题是它没有打开该内容 - 它打开时是空白的。我做错了什么?带有示例的完整代码包含在此 jsFiddle 中: http://jsfiddle.net/N4B4v/1/
<div id="#TEST10" style="display: none;">
HEYYYY!
<br />
<br />
heyyyyy!
</div>
<div style="margin-bottom: 10px;">
<a href="#" onclick="jQuery.facebox({ div: '#TEST10' }); return false;"><input type="checkbox" name="AgreeToRequirements" /></a>Open Facebox By Checking The Box
</div>
Using Facebox's documentation, I'm attempting to pop up Facebox programmatically, with the Facebox content being that of a div that is in the document.
The problem is is that it is not opening with that content - it's opening blank. What am doing wrong? The full code with example is contained in this jsFiddle: http://jsfiddle.net/N4B4v/1/
<div id="#TEST10" style="display: none;">
HEYYYY!
<br />
<br />
heyyyyy!
</div>
<div style="margin-bottom: 10px;">
<a href="#" onclick="jQuery.facebox({ div: '#TEST10' }); return false;"><input type="checkbox" name="AgreeToRequirements" /></a>Open Facebox By Checking The Box
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
id
属性错误。它应该只是TEST10
查看此更新的jsFiddle 演示
The
id
attribute is wrong. It should be justTEST10
Checkout this updated jsFiddle Demonstration