一、 Name类: 1、 Keywords(网页关键字) How: <meta name="keywords" content="这里写网页关键内容字段,利于搜索引擎优化"> what:向搜索引擎解释本页面的关键内容字段是什么? 2、Description(网页内容描述) How:<meta nam ...
分类:
Web程序 时间:
2017-08-31 15:56:28
阅读次数:
223
TextView: 显示文本控件 EditText 输入文本框 1.TextView常用属性: 2.EditText常用属性: 设置EditText的android:inputType属性可以限制文本输入类型比如android:inputType="textPassword"为设置输入格式为密码格, ...
分类:
移动开发 时间:
2017-08-31 12:34:23
阅读次数:
198
// // ViewController.m // UIPickerViewAll #import "ViewController.h" @interface ViewController () @end @implementation ViewController /* UIPickView控件常 ...
分类:
移动开发 时间:
2017-08-25 12:31:02
阅读次数:
252
常用内置函数(注意大小写) 1.Math数学对象 a) Math对象常用属性 属性 说明 Math.E 欧拉常数 Math.LN2 2的自然对数 Math.LN10 10的自然对数 Math.LOG2E 基数为2的对数 Math.LOG10E 基数为10的对数 Math.PI 圆周率 Math.SQ ...
分类:
其他好文 时间:
2017-08-22 18:37:02
阅读次数:
155
// // ViewController.m // TextViewAll #import "ViewController.h" @interface ViewController ()<UITextViewDelegate> @end @implementation ViewController ...
分类:
移动开发 时间:
2017-08-22 12:29:55
阅读次数:
361
原文地址:http://blog.csdn.net/fm19901229/article/details/8113969 ...
分类:
其他好文 时间:
2017-08-22 10:32:16
阅读次数:
221
// // ViewController.m // LabelAll // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad ...
分类:
移动开发 时间:
2017-08-18 15:23:28
阅读次数:
202
有些属性和方法始终是记不清,只能记下来,方便查找 如果对你有帮助请支持,没有帮助请告诉我哪里需要改进!谢谢! // ViewController.m // TableViewAll #import "ViewController.h" @interface ViewController ()<UIT ...
分类:
移动开发 时间:
2017-08-17 20:25:28
阅读次数:
335
常用标签学习: <img/>(单标签) 图片标签 使用效果:在网页中插入一张图片,可设置alt属性,在没有加载到图片的时候显示提示文字(插入图片有绝对路径和相对路径)。 <form></form> 表单标签 单独使用没有效果,需要在标签中加入其他标签配合使用。常用属性有action(提交表单地址)、 ...
分类:
Web程序 时间:
2017-08-15 21:04:43
阅读次数:
270
innerHTML: 元素标签内部的文本。 innerText outerHTML outerText nodeName: 节点名称 parentNode: 父节点 nextSibling: 下一个同胞节点 previousSibling: 上一个同胞节点 style: 元素样式 ...
分类:
其他好文 时间:
2017-08-13 20:01:58
阅读次数:
160