加载灯箱后,我想加载 javascript 代码。请解释应该使用的事件。
<script>
$j(function() {
alert("hello");
});
</script>
<a href="#generated-code" data-toggle="lightbox">SHOW CODE</a>
<div id="generated-code" class="lightbox hide fade" aria-hidden="true" role="dialog" tabindex="-1" class="container-fluid">
<div class="lightbox-content">
<textarea name="box-content" id="box-content" rows="6" cols="50">Sample text</textarea>
<p><input type="button" id="copy" name="copy" value="Copy" /></p>
</div>
</div>
上面的脚本在页面加载时执行,而不是在我点击灯箱内的复制按钮时执行。我想在点击复制按钮时执行脚本,但即使我使用带有 jquery 的点击事件它也不起作用。
请帮忙。