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>React开发实战
[美] Cássio de Sousa Antonio / 杜伟、柴晓伟、涂曙光 / 清华大学出版社 / 2017-3-1 / 58.00 元
介绍如何成功构建日益复杂的前端应用程序与接口,深入分析 React库,并详述React生态系统中的其他工具与库,从而指导你创建完整的复杂应用程序。 你将全面学习React的用法以及React生态系统中的其他工具和库(如React Router和Flux 架构),并了解采用组合方式创建接口的佳实践。本书简明扼要地讲解每个主题,并呈现助你高效完成工作的细节。书中严谨深刻地讲述React中重要的功......一起来看看 《React开发实战》 这本书的介绍吧!
