onclick打开带有预设html的彩盒

时间:2012-04-14 16:53:52

标签: javascript jquery events colorbox

我将开始我看到/阅读类似的问题,据我所知,它们都没有解决我的问题。

我的页面中有以下HTML:

<div id="approve-users-yesno">
   <h1>Approve the following users?</h1>
    <hr />
   <ul id='approve-users-list'>
</ul>
<label>Additional comments: <textarea rows="5" cols="20" id="approve-users-comment"></textarea></label>
<div style="margin-top: 50px;text-align:right;">
<button class="ulink" onclick='approveUsersSubmit();'>YES</button>
<button class="ulink" onclick='cleanCHKBXSelection("approveUsersIDS");'>NO</button>
</div>
</div>

我需要打开一个带有这个html(上面)的颜色框。 现在我正在做一个黑客攻击,它有以下问题:

$.colorbox({html:$('#approve-users-yesno').html())});

没有复制DOM会有什么办法?

1 个答案:

答案 0 :(得分:4)

根据the docs,使用“内联”选项。 jsFiddle

var $stuff = $('#approve-users-yesno');
$.colorbox({inline:true, href:$stuff});