pStack DOM element stack
- 授权协议: 未知
- 开发语言:
- 操作系统: 未知
- 软件首页: http://plugins.jquery.com/project/pStack
软件介绍
pStack plugin for jQuery.
Allows successive AJAX calls to replace contents of an element, whilst keeping previous contents in a stack.
Previous element contents can then be recalled by pop()ing them back off the stack.
Usage:
<script src="jquery.pagestack.js" type="text/javascript"></script>
<div id="myStack">
<p>this is the DOM chunk which dynamic things will happen to</p>
<p><a target="_blank" rel="nofollow" href="nextView.html" class="stackPush">Next ---</a></p>
</div>
<script type="text/javascript">
$('#myStack').pStack({
aPush: 'a.stackPush',
aPop: 'a.stackPop'
});
</script>nextView.html might look like this (ie, not a complete HTML document):
<p>This is my new DOM contents</p>
<p><a target="_blank" rel="nofollow" href="#" class="stackPop">--- Prev</a></p>算法竞赛入门经典(第2版)
刘汝佳 / 清华大学出版社 / 2014-6-1 / CNY 49.80
《算法竞赛入门经典(第2版)》是一本算法竞赛的入门与提高教材,把C/C++语言、算法和解题有机地结合在一起,淡化理论,注重学习方法和实践技巧。全书内容分为12 章,包括程序设计入门、循环结构程序设计、数组和字符串、函数和递归、C++与STL入门、数据结构基础、暴力求解法、高效算法设计、动态规划初步、数学概念与方法、图论模型与算法、高级专题等内容,覆盖了算法竞赛入门和提高所需的主要知识点,并含有大量......一起来看看 《算法竞赛入门经典(第2版)》 这本书的介绍吧!
