web编程吧 关注:87贴子:326
  • 1回复贴,共1

百度2013年校园招聘笔试题——WEB前端研发类

只看楼主收藏回复

1. 请写出至少三个CSS3中新添加的样式属性的名字;
2.请运用javaScript找出所有ClassName包含text的标签<li>,并将它们的背景颜色设置为黄色;
3.用HTML/CSS实现下面的图片内容:

4.浏览器的缓存和本地存储相关内容有哪些?这些在什么环境下都各自能起到什么作用?
5.我们把一个数字倒着读和原数字相同的数字称之为对称数,(例如1,121,88,8998),不考虑性能,请找出1—10000之间的对称数,要求用javaScript实现;
6.当你打开浏览在地址栏中输“http://www.baidu.com/”后在百度的搜索框中输入“HTML5”,然后点击百度一下按钮,在所有的信息在一一被列举出来的过程中,计算机和网络都发生了什么变化?你有什建议?
7.请描述你参加过的一个项目:
a)你在项目中的角**)你是如何研发,设计你的角色所做的东西的?
c)你觉得你在项目的过程中,哪些需要得以注重?
d)你觉得你还需要能做些什么,去更好的完成你的项目?
百度人力资源部 2012年10月13日





IP属地:江苏1楼2012-10-13 15:35回复
    第3题
    <!DOCTYPE html>
    <html>
    <head>
    <title></title>
    <meta charset="utf-8">
    <style type="text/css">
    body,div,ul,h4{margin:0;padding:0;}
    #music_top{width:250px;height: 150px;border:1px solid #ccc;}
    #music_head{background: #ccc;padding:5px;}
    .select{font-weight: bold;}
    span{padding-right: 20px;color:orange;}
    h4 a{color:black;font-size: 16px;}
    table{border-collapse: collapse;}
    table a{color:blue;}
    td.first{padding:5px 40px 5px 5px;background:
    url(playbtn.png) no-repeat 15px;}
    #music_footer a{margin-left: 5px;color:blue;}
    input{margin-left:80px;}
    </style>
    </head>
    <body>
    <div id="music_top">
    <div id="music_head">
    <h4><a href="#">歌曲TOP500</a></h4>
    </div>
    <div id="music_content">
    <table>
    <tr>
    <td class="select first"><span>1</span><a href="#">psy</a></td>
    </tr>
    <tr>
    <td class="first"><span>2</span><a href="#">北京北京</a></td>
    <td><a href="#">汪峰</a></td>
    </tr>
    <tr>
    <td class="first"><span>3</span><a href="#">我的歌声里</a></td>
    <td><a href="#">曲婉婷</a></td>
    </tr>
    </table>
    </div>
    <div id="music_footer">
    <a href="#">更多>></a>
    <input type="button" value="试听全部"/>
    </div>
    </div>
    </body>
    </html>


    2楼2017-05-03 15:13
    回复