码迷,mamicode.com
首页 > Web开发 > 详细

js常见题目

时间:2015-10-01 10:17:47      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

1、用正则表达式实现字符串首尾空格删除功能。

<script>

var string="abcdef";

str=str.replace(^s*|s*$,");

alert("str");

</script>

 

2、写一个hack样式实现在IE6、IE7、firefox下分别使用不同的颜色。

background:blue;

*background:red !important;

_background:yellow;

 

3、列出4个http状态码并解释含义。

200:OK;

400:bad request;

403:forbidden;

404:not found;

 

4、列出3个content-type

text/html

text/xml

image/fax

image/gif

 

js常见题目

标签:

原文地址:http://www.cnblogs.com/mfbxy/p/4850697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!