我查看了我的代码,我找不到导致它在早期版本的 IE 中中断的原因。该代码适用于 FF、Chrome 和 Safari。
该代码应该在阅读列表的一侧生成一个带有标题和照片的 div,然后在底部生成一个 x 以将其删除。但是,在 IE 上,它只显示一个 x。网站:www.hearditfrom.com
我真的很感激任何帮助!提前致谢。
这是代码:
$(function() {
$('a.addtoreadinglist').click(function(){
$('<li id="arrayorder_' + $(this).attr('data-storyid') + '"> <div class="reading_list drop-shadow lifted"><div class="reading_list_container"><p class="reading_list_story"><a class="rlstory" href="' + $(this).attr('data-url') + '" data-storyid="' + $(this).attr('data-storyid') + '">' + $(this).attr('data-headline') + '</a></p></div><div class="rlbuttons"><a class="deletefromrl" data-storyid="'+ $(this).attr('data-storyid') + '" data-parent="arrayorder_' + $(this).attr('data-storyid') + '"><div class="deletebutton">x</div></div></div></li>').appendTo('#list ul');
$(this).hide();
$('#instruction').fadeOut('slow').remove();
var order = $('#list ul').sortable("serialize") + '&update=update';
$.post("updateReadingList.php", order, function(theResponse){
$("#response").html(theResponse);
});
})
})
//photo
$(function() {
$('a.addtoreadinglistphoto').click(function(){
$('<li id="arrayorder_' + $(this).attr('data-storyid') + '"><div class="reading_list drop-shadow lifted"><div class="reading_list_container"><p class="reading_list_story"><img class="reading_list_thumbnail" src="http://images.hearditfrom.com/timthumb.php?src=' + $(this).attr('data-photoname') + '&q=100&w=30&h=30" /><a class="rlstory" href="' + $(this).attr('data-url') + '" data-storyid="' + $(this).attr('data-storyid') + '">' + $(this).attr('data-headline') + '</a></p></div><div class="rlbuttons"><a class="deletefromrl" data-storyid="'+ $(this).attr('data-storyid') + '" data-parent="arrayorder_' + $(this).attr('data-storyid') + '"><div class="deletebutton">x</div></div></div></li>').appendTo('#list ul');
$(this).hide();
$('#instruction').fadeOut('slow').remove();
var order = $('#list ul').sortable("serialize") + '&update=update';
$.post("updateReadingList.php", order, function(theResponse){
$("#response").html(theResponse);
});
})
})