我想在加载灯箱后加载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>
上面的脚本在页面加载时执行,而不是当我点击lightbox里面的复制按钮时。我想在复制按钮点击时执行脚本,但即使我使用jquery的click事件也不行。
请帮忙。
答案 0 :(得分:0)
如果可能的话,发布你的代码加载灯箱这里,没有看到你的代码我可以说是最简单的,只需在加载灯箱的代码行之后给你的javascript代码。
答案 1 :(得分:0)
要点击复制按钮执行脚本,您可以使用以下代码
$j(function() {
$j("#copy").click(function(){
// place your code here
});
});