我正在使用ericmartin的jquery.simplemodal来显示视频。当我执行一次时它工作正常,但如果我关闭弹出窗口并再次打开,视频将不再有效。所以我必须重新加载页面才能让它再次运行。
我用过这个
if(target.contains(shooter.getLocation())) {
target.setColor(Color.RED);
int mSecs = 500;
Timer timer = new Timer(mSecs, new TimerListener(target));
timer.setRepeats(false);
timer.start();
}
答案 0 :(得分:0)
要解决此问题,您需要将persist
选项设置为true
:
$(function() {
$('#myID .wsite-button-inner').click(function (e) {
$('#myIdShow').modal({
persist: true
});
return false;
});
});