JQuery确认(+fancy)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery确认(+fancy)相关的知识,希望对你有一定的参考价值。
STANDARD ======== $('.ask-plain').click(function(e) { e.preventDefault(); thisHref = $(this).attr('href'); if(confirm('Are you sure')) { window.location = thisHref; } }); FANCY ====== $('.ask').click(function(e) { e.preventDefault(); thisHref = $(this).attr('href'); if($(this).next('div.question').length <= 0) $(this).after('<div class="question">Are you sure?<br/> <span class="yes">Yes</span><span class="cancel">Cancel</span></div>'); $('.question').animate({opacity: 1}, 300); $('.yes').live('click', function(){ window.location = thisHref; }); $('.cancel').live('click', function(){ $(this).parents('div.question').fadeOut(300, function() { $(this).remove(); }); });
以上是关于JQuery确认(+fancy)的主要内容,如果未能解决你的问题,请参考以下文章
stickyNavbar.js:具有智能锚点链接突出显示的奇妙粘性导航jQuery插件