天天看点

***js常用方法汇总(源自实际中的项目)

Q:

400-819-0717转8888,取后四位分机号

A:

方法一:

alert("abcdefg".slice(-4));

方法二:

var str= "abcdefg";

alert(str.substr(str.length-4));

Q:

JS和PHP正则举例

js:

str = str.replace(/(<div.*?>)[\s\n]*?(<\/div>)/,'$1$2');

php:

$str = preg_replace('#(<div.*?>)[\s\n]*?(</div>)#','$1$2',$str); //$str是你的字符串。

Q:JS如何判断字符串为空

<code>function</code> <code>isNullOrEmpty(strVal) {</code>

<code>if</code> <code>(strVal == </code><code>''</code> <code>|| strVal == </code><code>null</code> <code>|| strVal == undefined) {</code>

<code>   return</code> <code>true</code><code>;</code>

<code>} </code><code>else</code> <code>{</code>

<code>   return</code> <code>false</code><code>;</code>

<code>}</code>

如何联系我:【万里虎】www.bravetiger.cn

【QQ】3396726884 (咨询问题100元起,帮助解决问题500元起)

【博客】http://www.cnblogs.com/kenshinobiy/