我试图在页面加载时隐藏实时聊天框,然后单击超链接时,在30秒后显示聊天框。
任何人都有任何想法,我做错了什么?
Jquery的
<script type="text/javascript">
jQuery(document).ready(function ($) {
var thislive = document.getElementById('liveChat');
$(thislive).hide();
$("#chatBox").click(function () {
var thislive = document.getElementById('liveChat');
$(thislive).delay(30000).show(); // Display after 30 seconds
});
});
</script>
<div id="liveChat">
<!-- Start of LiveChat (www.livechatinc.com) code -->
<script type="text/javascript">
window.__lc = window.__lc || {};
window.__lc.license = 111111;
(function () {
var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true;
lc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.livechatinc.com/tracking.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(lc, s);
})();
</script>
<!-- End of LiveChat code -->
</div>
CSHTML
<div class="col-sm-3 col-md-3">
<a id="chatBox" href="#panel-column-3" class="panel-column row-collapse-toggle collapsed" data-toggle="collapse" aria-expanded="false" aria-controls="bpanel-column-3">
<i class="fa fa-question-circle"></i>
<h3>@Umbraco.Field("contactustab3title")</h3>
</a>
<div class="row-collapse collapse" id="panel-column-3">
<div class="inner">
@Umbraco.Field("contactustab3content")
</div>
</div>
</div>
更新 以下作品。我认为问题出在聊天脚本本身。即使它在div里面,它也有自己的想法。
<script type="text/javascript">
jQuery(document).ready(function ($) {
var thislive = document.getElementById('liveChat');
$(thislive).hide();
$("#chatBox").click(function () {
var thislive = document.getElementById('liveChat');
$(thislive).delay(5000).show(0); //5 seconds
});
});
</script>
<div id="liveChat">
<div>
test
</div>
</div>
答案 0 :(得分:0)
您可能希望在此设置timeout
而不是delay
。像这样,
setTimeout(function(){ $(thislive).show(); }, 30000);
所以替换
$(thislive).delay(30000).show();
最终代码
<script type="text/javascript">
jQuery(document).ready(function ($) {
var thislive = document.getElementById('liveChat');
$(thislive).hide();
$("#chatBox").click(function () {
var thislive = document.getElementById('liveChat');
setTimeout(function(){ $(thislive).show(); }, 30000); // Display after 30 seconds
});
});
</script>
答案 1 :(得分:0)
30秒后更改现有显示
($(thislive).delay(30000).show();
)代码
$(thislive).delay(30000).show(0);
它会起作用
答案 2 :(得分:0)
您需要执行:$(thislive).delay(30000).show(0);
根据.delay()
delay()
可以与标准效果队列一起使用,也可以与自定义队列一起使用。这不会延迟不使用效果队列的.show()
或.hide()
的无参数形式。
提供持续时间后,.show()
将成为动画方法。
这里是fiddle
答案 3 :(得分:0)
尝试使用该代码:
$(document).ready(function($){
$('#liveChat').hide();
$('#chatBox').click(function(){
$('#liveChat').delay(30000).fadeIn();
});
});
答案 4 :(得分:0)
我使用setTimeout()方法解决了这个问题。 我的chatBox超链接现在有一个名为loadChat()的新方法的onclick调用。 然后调用另一个名为showChat的方法,然后加载聊天框脚本。
<script type="text/javascript">
function loadChat() {
setTimeout(showChat, 5000) // load the chat icon after 5 seconds
}
function showChat() {
window.__lc = window.__lc || {};
window.__lc.license = 1111111;
(function () {
var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true;
lc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.livechatinc.com/tracking.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(lc, s);
})();
}
</script>