PRD是英文Product Requirement Document的缩写,中文的意思是产品需求文档,具体的名词介绍大家可以询问Google。PRD文档是基于BRD、MRD的延续文档,主要用于产品设计和开发使用,因此阅读这份文档的人群绝大多数是设计与技术人员。在这类人群中,设计师更多依赖于原型进行交 ...
分类:
其他好文 时间:
2016-11-08 17:02:56
阅读次数:
126
相关链接:http://www.admin10000.com/Document/291.html ...
分类:
其他好文 时间:
2016-11-08 16:45:51
阅读次数:
137
文件:frame.html<html>
<head>
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<linkhref="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css"rel="stylesheet"/>
<scripttype="text/javascript">$(document..
分类:
其他好文 时间:
2016-11-08 14:36:10
阅读次数:
135
本章内容: 1、动态创建html内容的“老”技巧:document.write()和innerHTML属性 2、DOM方法:createElement(),creatTextNode(),appendChild(),insertBefore(). 一、document.write() 语法:docu ...
分类:
Web程序 时间:
2016-11-08 13:24:10
阅读次数:
170
JS设置cookie、读取cookie、删除cookie JS设置cookie,注意一定要path=/ ,根目录,不然其他目录可能查询不到。。默认是本目录。 document.cookie = 不会吧原cookie删除的,可能是个属性实现模式,实际是个增量过程。。 删除cookie,通过是指过期时间 ...
分类:
Web程序 时间:
2016-11-08 02:03:16
阅读次数:
300
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>全局属性</title> <script>// window.document.designMode="on"; </script></head><body><fo ...
分类:
其他好文 时间:
2016-11-08 01:10:27
阅读次数:
256
<html><head><script type="text/javascript">function getCookie(c_name){if (document.cookie.length>0) { c_start=document.cookie.indexOf(c_name + "=") if ...
分类:
其他好文 时间:
2016-11-08 00:44:55
阅读次数:
205
原博文出自于: http://www.cnblogs.com/BYRans/p/5003029.html 感谢! Spark SQL 之 DataFrame 转载请注明出处:http://www.cnblogs.com/BYRans/ 概述(Overview) Spark SQL是Spark的一个组 ...
分类:
数据库 时间:
2016-11-08 00:41:59
阅读次数:
414
XML文件有2种解析方式 1.基于文档(document) 2.基于事件(sax) 1.IOS中XML文件获取 首先要将XML导入工程中 在ViewController的按钮事件中,代码如下: //获取xml完整路径 NSString * path=[[NSBundle mainBundle] pa ...
分类:
移动开发 时间:
2016-11-07 22:09:05
阅读次数:
339
<script>$(function(){$(".dropdown").click(function(e){$(".dropdown").removeClass(‘open‘);$(this).toggleClass(‘open‘);});//$("body").bind("click",function(evt){//if(evt.target!=$(‘.dropdown-menu‘).get(0)){//$(‘.dropdown-menu‘).hide();//}//});$(document..
分类:
Web程序 时间:
2016-11-07 20:11:10
阅读次数:
187