我的queue.html
看起来像
<div class="queue">
<div class="player_controls">
<button id="previous" class="btn btn-large navigator-button navigator-icons">
<i class="icon-backward icon-large"></i>
</button>
<button id="play" class="btn btn-large navigator-button navigator-icons">
<i class="icon-play icon-large"></i>
</button>
<button id="next" class="btn btn-large navigator-button navigator-icons">
<i class="icon-forward icon-large"></i>
</button>
<button id="shuffle" class="btn btn-large navigator-button navigator-icons">
<i class="icon-random icon-large"></i>
</button>
</div>
<div class="queue_list">
<!--p>your localStorage data will be displayed here</p-->
<div class="queue_item hide-item">
<img class="thumbnail" />
<p class="title"></p>
</div>
</div>
</div>
我的jQuery
函数看起来像
$(function(){
$('#queue').click(function(){
$("#feature").load("templates/queue.html");
var template = $('.queue_item').clone();
if (localStorage['queue'] != null ) {
$('.queue_list').append('<p>You have not added any video to the queue yet</p>');
} else {
var queue_list = JSON.parse(localStorage['queue']);
for (var i = 0; i < queue_list.length; i++) {
console.log(queue_list[i]);
}
}
});
$('body').on('click', '#play', function(){
bootstrap_alert.success('will play video now');
});
$('body').on('click', '#previous', function(){
bootstrap_alert.success('will play previous video now');
});
$('body').on('click', '#next', function(){
bootstrap_alert.success('will play next video now');
});
$('body').on('click', '#shuffle', function(){
bootstrap_alert.success('will shuffle videos now');
});
});
CSS
看起来像
.hide-item {
display: none;
}
.view-item {
display: block;
height: 120px;
margin-left: 1%;
}
只要点击Queue
按钮,上面的jQuery
功能就会启动,并显示html
为You have not added any video to the queue yet
并快速消失。
为什么不留在页面上?
答案 0 :(得分:5)
我注意到你正在使用按钮。你把它们放在表格里了吗? 如果您这样做,浏览器将回发您的页面并刷新您的页面。该页面将恢复其原始状态。
答案 1 :(得分:3)
我会猜测并说你要附加一个被.queue_list
函数替换的load()
元素。
尝试在加载新内容时在回调中添加附加内容:
$('#queue').click(function() {
$("#feature").load("templates/queue.html", function() { //callback
var template = $('.queue_item').clone();
if (localStorage['queue'] != null) {
$('.queue_list').append('<p>You have not added any video to the queue yet</p>');
} else {
var queue_list = JSON.parse(localStorage['queue']);
for (var i = 0; i < queue_list.length; i++) {
console.log(queue_list[i]);
}
}
});
});