小知识点

1、数字格式化为n位小数

toFixed(n)  结果为string类型,可以在格式化以后用parseFloat转换成number类型。

2、font-weight

font-weight取值:

normal:默认值,标准字符。

inherit:从父级元素继承字体的粗细。

bold:粗体效果。

bolder:定义更粗的字符。

lighter:定义更细的字符。

100-900:网页中字体粗细的9个等级,100最细,900最粗,400相当于normal,700相当于bold;

其实100-600 和lighter还有700-900和bold,bolder并没有特别大的差异,一般很难看出不同(至少我是看不出来),最明显的是从600到700的变化。

3、input元素border:none在ie6,7中无效


border:none在ie6,7中仅相当于border-style:none;解决办法:

写成border:0 none;或者给input元素加个背景。

4、background-clip  属性规定背景的绘制区域。

border-box :背景填充到边框(盒模型的border)

padding-box  :背景填充到除边框以外的盒子内部(盒模型的padding)

content-box  :背景填充到内容部分(盒模型的content)

5、substring 和 substr 意义相同,用法不同

相同点:都是js中截取字符串的方法。

substring的两个参数都是位置,而substr的两个参数,一个是位置,一个是长度。

比如截取字符串'abcdefg'中的最后defg子字符串。

var a = 'abcdefg';

alert(a.substring(3,7));//substring 截取的字符串不包括最后一位。

//还可以写成

alert(a.substring(3));//省略末尾位置,会自动解析到字符串最后一位。

//换成substr的写法

alert(a.substr(3,4));

//也可以写成

alert(a.substr(3));


6、CSS 基线


小知识点_第1张图片
图片来自网络


基线(baseline)并不是汉字的底端,而是字母'X'的底端。

7.submit 方法失效

有时候会需要用到submit() 方法提交表单内容,但是某些情况下,死活没有反应。这个时候你就需要看一下是不是提交按钮的name或者id值是‘submit’,改掉就好啦!

jquery API 关于这一点的介绍:

Additional Notes:

Forms and their child elements should not use input names or ids that conflict with properties of a form, such as submit, length, or method. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see DOMLint.

其他注意事项:

表单和其子元素不宜用一个表单的属性的属性作为name或id的名称,如submit, length, or method,是、会产生冲突。名称冲突可能会导致混乱的失败。对于一个完整的规则列表,并检查这些问题标记,看DOMLint。

你可能感兴趣的:(小知识点)