Web开发
html 浏览器的选择:1.火狐2.ie3.chrome4.mac5.opera 安装两款插件:1.firebug2.web develope html页面元素:1.doctype2.htmlhead//编码//样式//事件body//正文 sublimenotepad++zend studiodr ...
更多文章:www.f-z.cn 服务端返回的数据格式为: 更多文章:www.f-z.cn 服务端返回的数据格式为: response.setContentType("text/xml;charset=utf-8"); response.setContentType("text/xml;charset ...
1.https://stackoverflow.com/questions/23583514/webstorm-8-showing-errors-for-a-correct-html-tag 2. ...
在父级加上 text-align: center; 虽然这个属性只对行内元素有效,但是同时把需要居中的块设置上 display: inline-block; 这样就可以把块级元素转化为拥有块级属性的行内元素,从而让text-align生效,达到自适应宽度居中显示。 ...
html嵌套css样式:1.外部(推荐)2.内部3.内联(不推荐) css优先级1.内联2.id选择器3.class选择器4.标签 css长度单位:1.px2.em (14px) css选择器:常用选择器基本选择器层级选择器伪类选择器属性选择器 常用选择器:1.标签2.id3.class4.关联.d ...
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body id="ibm-com" class="v17" aria-busy="false"><h2 id="ma ...
<datalist>定义选项列表,与input配合使用,定义input可能的值 <article>定义外部内容 <aside>定义article以外的内容,aside的内容应与article内容相关 <command>定义命令按钮,比如单选按钮,复选按钮 <details>通过这个标签可以隐藏版权问 ...
1、关于页面元素的引用 通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法,且返回的对象为jquery对象(集合对象),不能直接调用dom定义的方法。 2、jQuery对象与dom对象的转换 只有jquery对象才能使用jquery定义 ...
<a href="~/Home/download">Click to get file</a> <a href="~/Home/download?id=1">Click to get file</a> public FileStreamResult download() { string fileN ...