我正在尝试创建一个小型Chrome扩展程序,用于复制变量并在按钮单击时粘贴它们。
我遇到的问题是我会显示一个小小的"警告"在popup.html中,每次单击任一按钮。
<div class="alert alert-success status hide" role="alert"></div>
我使用的jQuery如下:
$(document).ready(function(){
$(".copy").click(function() {
$(".status").removeClass('hide').text("You successfully copied the answers.");
setTimeout(function() {
$(".status").fadeOut();
}, 5000);
});
$(".paste").click(function() {
$(".status").removeClass('hide').text("You successfully pasted the answers.");
setTimeout(function() {
$(".status").fadeOut();
}, 5000);
});
});
现在,我怎样才能确保在<div>
淡出后我仍然可以点击任一按钮,它会再次出现?