roro_crawler 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c624947b38a0356ad347fe2305b5ca5b42b26a80
4
+ data.tar.gz: 17658d2929d346b2302448288876d48587ac88c9
5
+ SHA512:
6
+ metadata.gz: 016a1722e2afbf2726515d71f7f1b4b26288ee3dc6b4035c7313ea49c129f9040c240754c0d69befa54793b1e7475b7ad61fac0d875c5db3be964338e6a7a4d6
7
+ data.tar.gz: eb792990a4f3f2935356771aef37cbadfdb066660fba4a5fbf0ee82ae3718b125bf7183cdaf37efa759cb56152c3bc59715659459146e806670610c81a5aba89
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = Crawler
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Crawler'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+
19
+
20
+ Bundler::GemHelper.install_tasks
21
+
22
+ require 'rake/testtask'
23
+
24
+ Rake::TestTask.new(:test) do |t|
25
+ t.libs << 'lib'
26
+ t.libs << 'test'
27
+ t.pattern = 'test/**/*_test.rb'
28
+ t.verbose = false
29
+ end
30
+
31
+
32
+ task default: :test
@@ -0,0 +1,5 @@
1
+ # require all files in dir name is same with __FILE_-
2
+ dirname = __FILE__.split('/').last.gsub(/\.rb/, '')
3
+ Dir[File.expand_path("../#{dirname}/*", __FILE__)].each do |file|
4
+ require file
5
+ end
@@ -0,0 +1,98 @@
1
+ require 'roro_support'
2
+ require 'active_support'
3
+ require File.expand_path('../crawler_handler', __FILE__)
4
+
5
+ include Crawler
6
+
7
+ module Crawler
8
+ class Klass
9
+ attr_accessor :offers, :browser, :link, :title, :intr, :page
10
+
11
+ def initialize(options={})
12
+ @visible = options[:visible]
13
+ @link_selector = 'h3.title>a'
14
+ @offers = Hash.new
15
+ @page = 0
16
+
17
+ if @visible
18
+ @browser = crawler visible: @visible
19
+ else
20
+ @browser = crawler
21
+ end
22
+ end
23
+
24
+ def goto_next
25
+ @page += 1
26
+ @browser.goto "http://s.yingjiesheng.com/result.jsp?keyword=web&start=#{@page*10}&period=0&sort=score&jobtype=0"
27
+ end
28
+
29
+ def site(keyword, page_num, options={})
30
+ if url.nil?
31
+ p <<-MSG
32
+ please add
33
+ def site
34
+ url = 'http://website.com'
35
+ super
36
+ end
37
+ MSG
38
+ end
39
+ @browser.goto url
40
+
41
+ page_num.to_i.times do
42
+ links
43
+ link_contents
44
+ "http://s.yingjiesheng.com/result.jsp?keyword=web&start=#{@page*10}&period=0&sort=score&jobtype=0"
45
+ goto_next
46
+ end
47
+
48
+ @browser.close
49
+ end
50
+
51
+
52
+ def close
53
+ @browser.close
54
+ end
55
+
56
+
57
+ def links
58
+ as = @browser.css @link_selector
59
+ unless as.nil?
60
+ @offers = as.
61
+
62
+ collect('text', 'href')
63
+ end
64
+ end
65
+
66
+ def link_contents
67
+ @offers.each do |title, link|
68
+ if title && link
69
+ @title = title
70
+ @link = link
71
+ @intr = msg link
72
+ safe_save
73
+ end
74
+ end
75
+ end
76
+
77
+ def safe_save
78
+ msg = <<-MSG
79
+ title: #{@title}
80
+ link: #{@link}
81
+ MSG
82
+
83
+ Rails.logger.info msg
84
+
85
+ p @intr
86
+ return if @intr.nil?
87
+ Offer.create(link: @link, title: @title, intr: @intr, from: 'yjs')
88
+ end
89
+
90
+
91
+ def msg(href)
92
+ if href[/http\:\/\/www\.yingjiesheng\.com\/job\-\w+/]
93
+ @browser.goto href
94
+ return Handler.get_intr_from(@browser.html)
95
+ end
96
+ end
97
+ end
98
+ end
@@ -0,0 +1,13 @@
1
+ require 'nokogiri'
2
+ module Crawler
3
+ module Handler
4
+ class << self
5
+ def get_intr_from(html)
6
+ doc = Nokogiri::HTML.parse html
7
+ doc.css('.jobIntro, .j_i')
8
+ .text
9
+ .gsub(/(本站提醒:如何识别虚假招聘信息?求职必看,切勿受骗上当!)|(如何写一份简单、直接、高效的求职信?)/, '')
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module Crawler
2
+ VERSION = "0.0.3"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :roro_crawler do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+ require 'roro_support'
3
+
4
+ describe 'Crawler' do
5
+ before do
6
+ end
7
+
8
+ after do
9
+ if @c.browser
10
+
11
+ end
12
+ end
13
+
14
+ describe "links" do
15
+ before do
16
+
17
+ end
18
+
19
+ it 'links can get links correctly' do
20
+
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+ include Crawler
3
+
4
+ describe "Handler" do
5
+ describe 'get_intr_from' do
6
+ before :all do
7
+ @pass = lambda do
8
+ content = File.read(@fixtures[:intr])
9
+ intr = Handler::get_intr_from content
10
+ print intr
11
+ expect(intr.length).to be < 1000
12
+ expect(intr).not_to include "本站提醒:如何识别虚假招聘信息?求职必看,切勿受骗上当!"
13
+ expect(intr).not_to include "如何写一份简单、直接、高效的求职信?"
14
+ end
15
+
16
+ end
17
+ it 'pass spec1' do
18
+ @pass.call
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,217 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
2
+ <meta http-equiv="Content-Type" content="text/html; charset=gbk"><title>北京网站前端研发工程师(实习生)招聘_美薇亭(北京)文化发展有限公司招聘_应届生求职网</title>
3
+ <meta name="keywords" content="网站前端研发工程师(实习生) 美薇亭(北京)文化发展有限公司 校园招聘 应届生求职网">
4
+ <meta name="description" content="网站前端研发工程师(实习生) 美薇亭(北京)文化发展有限公司 工作职责:1、参与RIA富交互产品的前端系统的开发与实现2、参与Web与移动互联网前沿技术研究与新技术创新职位要求: 1、熟悉HTML5/CSS3等相关技术2、熟悉J..."><script>
5
+ if ((screen.width < 1210)){document.write("<link rel='stylesheet' type='text/css' href='/template/display/layout_1024_show_v2.css' />")}
6
+ else{document.write("<link rel='stylesheet' type='text/css' href='/template/display/layout_show_v2.css' />")}
7
+ </script><link rel="stylesheet" type="text/css" href="/template/display/layout_show_v2.css">
8
+ <style>
9
+ body{behavior:url("/template/display/csshover.htc");margin:0;padding:0;}
10
+ </style>
11
+
12
+ <script src="/globals/scripts/globals.js" language="javascript" type="text/javascript"></script>
13
+ <script src="/globals/scripts/ajax.js" language="javascript" type="text/javascript"></script>
14
+ <script src="/globals/scripts/category.js" language="javascript" type="text/javascript"></script><script src="http://bdimg.share.baidu.com/static/js/logger.js?cdnversion=382445"></script><link href="http://bdimg.share.baidu.com/static/css/bdsstyle.css?cdnversion=20130704" rel="stylesheet" type="text/css"></head><body><iframe frameborder="0" style="display: none;"></iframe><div id="bdshare" style="right: 0px; top: 312px; position: fixed; height: 330px; overflow: hidden;"><img src="http://bdimg.share.baidu.com/static/images/r1.gif" alt="" style="float:left;margin-top:58px;"><iframe id="bdsIfr" style="position:absolute;display:none;z-index:9999;" frameborder="0"></iframe><div id="bdshare_l" style="display: none; left: 24px;"><div id="bdshare_l_c"><h6>分享到</h6><ul><li><a href="#" class="bds_mshare mshare">一键分享</a></li><li><a href="#" class="bds_qzone qqkj">QQ空间</a></li><li><a href="#" class="bds_tsina xlwb">新浪微博</a></li><li><a href="#" class="bds_baidu bdsc">百度云收藏</a></li><li><a href="#" class="bds_renren rrw">人人网</a></li><li><a href="#" class="bds_tqq txwb">腾讯微博</a></li><li><a href="#" class="bds_bdxc bdxc">百度相册</a></li><li><a href="#" class="bds_kaixin001 kxw">开心网</a></li><li><a href="#" class="bds_tqf txpy">腾讯朋友</a></li><li><a href="#" class="bds_tieba bdtb">百度贴吧</a></li><li><a href="#" class="bds_douban db">豆瓣网</a></li><li><a href="#" class="bds_tsohu shwb">搜狐微博</a></li><li><a href="#" class="bds_bdhome bdhome">百度新首页</a></li><li><a href="#" class="bds_sqq sqq">QQ好友</a></li><li><a href="#" class="bds_thx thx">和讯微博</a></li><li><a href="#" class="bds_more">更多...</a></li></ul><p><a href="#" class="goWebsite">百度分享</a></p></div></div></div><div id="category_appended_container" style="z-index:3;display:block;float:left;"></div>
15
+ <script src="/globals/scripts/control.js" language="javascript" type="text/javascript"></script>
16
+ <script src="/globals/scripts/checks.js" language="javascript" type="text/javascript"></script>
17
+ <script src="/template/display/display_jobs.js" language="javascript" type="text/javascript"></script>
18
+ <script src="http://www.yingjiesheng.com/cache/outer/jp_jobshow_txt.js" language="javascript" type="text/javascript"></script>
19
+ <script src="/template/display/display_jobs_lang.js" language="javascript" type="text/javascript"></script>
20
+ <script src="/template/display/moreCity.js" language="javascript" type="text/javascript"></script>
21
+ <script src="$urlconf[domains]}template/display/globals/scripts/jquery.js" language="javascript" type="text/javascript"></script>
22
+ <script src="/globals/scripts/jqModal.js" language="javascript" type="text/javascript"></script>
23
+
24
+ <script type="text/javascript">
25
+ var weibo_w = 106 , weibo_h = 28;
26
+ var weiboparam = {
27
+ url:location.href,
28
+ type:'5',
29
+ count:'', /**是否显示分享数,1显示(可选)*/
30
+ appkey:'', /**您申请的应用appkey,显示分享来源(可选)*/
31
+ title:'我已在应届生求职网www.yingjiesheng.com上成功申请 美薇亭(北京)文化发展有限公司 网站前端研发工程师(实习生) 职位,你也赶快来申请吧,申请网址:', /**分享的文字内容(可选,默认为所在页面的title)*/
32
+ pic:'', /**分享图片的路径(可选)*/
33
+ ralateUid:'1241330914', /**关联用户的UID,分享微博会@该用户(可选)*/
34
+ rnd:new Date().valueOf()
35
+ }
36
+ var weibotemp = [];
37
+ for( var p in weiboparam ){
38
+ weibotemp.push(p + '=' + encodeURIComponent( weiboparam[p] || '' ) )
39
+ }
40
+ var my_job_id = '310147';
41
+ </script>
42
+ <link href="/template/css/popup.css" rel="stylesheet" type="text/css">
43
+ <link href="/template/css/category.css" rel="stylesheet" type="text/css">
44
+
45
+
46
+
47
+
48
+ <div id="jobappsection" class="mypopup"></div>
49
+ <div class="head">
50
+ <div class="box">
51
+ <div class="h_l"><a class="logo" href="http://www.yingjiesheng.com"></a>欢迎来到应届生求职网-中国大学生求职第一网站</div>
52
+ <div class="l_r"><span id="jobshow_log_span"><a href="http://k.yingjiesheng.com/" target="_blank">个人账户登录</a> | <a href="http://my.yingjiesheng.com/index.php/personal/register.htm" target="_blank">个人用户注册</a> | <a href="http://my.yingjiesheng.com/index.php/company.htm" target="_blank">企业账户登录</a> | <a href="http://my.yingjiesheng.com/index.php/company/register.htm" target="_blank">企业用户注册</a></span> </div>
53
+ </div>
54
+ </div>
55
+ <div class="box">
56
+ <div class="menu">
57
+ <ol class="clearfix">
58
+ <li class="img"><img src="/images/display/mlefy.jpg"></li>
59
+ <li class="on"><a href="http://www.yingjiesheng.com/">首页</a></li>
60
+ <li><span><img src="/images/display/icon_hot2.gif"></span><a href="http://bbs.yingjiesheng.com/forum.php" target="_blank">BBS</a></li>
61
+ <li><a href="http://www.yingjiesheng.com/commend-fulltime-1.html" target="_blank">全职推荐</a></li>
62
+ <li><a href="http://www.yingjiesheng.com/commend-parttime-1.html" target="_blank">实习推荐</a></li>
63
+ <li><a href="http://s.yingjiesheng.com/" target="_blank">职位搜索</a></li>
64
+ <li><a href="http://my.yingjiesheng.com/xuanjianghui.html" target="_blank">宣讲会</a></li>
65
+ <li><a href="http://zph.yingjiesheng.com/" target="_blank">招聘会</a></li>
66
+ <li><a href="http://www.yingjiesheng.com/industry/" target="_blank">行业招聘</a></li>
67
+ <li><a href="http://s.yingjiesheng.com/result.jsp?keyword=%E5%85%AC%E5%8A%A1%E5%91%98+OR+%E4%BA%8B%E4%B8%9A%E5%8D%95%E4%BD%8D&amp;do=2" target="_blank">公务员</a></li>
68
+ <li><a href="http://www.yingjiesheng.com/major/" target="_blank">分类求职</a></li>
69
+ <li><a href="http://www.yingjiesheng.com/deadline/" target="_blank">网申截止</a></li>
70
+ <li><a href="http://hotel.yingjiesheng.com/" target="_blank">旅社</a></li>
71
+ <li><a href="http://vip.yingjiesheng.com/newbook/2013/" target="_blank">求职书</a></li>
72
+ <li class="cur"><span><img src="/images/display/icon_hot2.gif"></span><a href="http://wenku.yingjiesheng.com/" target="_blank">文库</a></li>
73
+ <li class="img" style="text-align:right;"><img src="/images/display/mright.jpg"></li>
74
+ </ol>
75
+ </div>
76
+ </div>
77
+
78
+ <div class="box clearfix">
79
+ <div class="loca ">
80
+ <div id="area"><ol><li idd="上海" value="349">上海</li><li idd="北京" value="56">北京</li><li idd="广州" value="85">广州</li><li idd="深圳" value="102">深圳</li><li idd="武汉" value="186">武汉</li><li idd="南京" value="217">南京</li><li idd="天津" value="376">天津</li><li idd="成都" value="352">成都</li><li idd="其他地区" value="999">其他地区</li></ol></div>
81
+ <div id="type"><ol><li idd="全职" value="1">全职</li><li idd="兼职" value="2">兼职</li></ol></div>
82
+ <span style="_height:55px;"><form action="http://s.yingjiesheng.com/result.jsp" method="get" accept-charset="utf-8" onsubmit="document.charset='utf-8';" target="_blank"><big id="area_s">请选择地区</big><big id="type_s">全/兼职</big><input type="input" name="keyword" id="keyword" value="" class="input"><input type="submit" value="" class="btn"><input type="hidden" name="cityarea2" id="cityarea2"><input type="hidden" name="jobtype" id="jobtype" value="0"><input type="hidden" name="city" id="city" value="0"></form></span><b>
83
+ 当前位置:<a href="http://www.yingjiesheng.com">首页</a> » <a href="http://www.yingjiesheng.com/beijing/">北京</a>招聘 »
84
+ <a href="/company_5437055.html">美薇亭(北京)文化发展有限公司</a> » <a href="/job_310147.html">网站前端研发工程师(实习生)</a></b>
85
+ </div> <div class="main">
86
+ <div class="com_mleft">
87
+ <div class="com">
88
+ <h2><a href="/company_5437055.html" target="_blank">美薇亭(北京)文化发展有限公司</a></h2>
89
+ <ol><li style="width:50%">所属行业: 其他 </li><li>企业规模:51-100人</li><li>企业性质: 民营/私营企业</li></ol>
90
+ </div>
91
+ <div class="job_list">
92
+ <h1><a href="/job_310147.html" title="网站前端研发工程师(实习生)">网站前端研发工程师(实习生)</a>(北京总部,市场部)</h1>
93
+ <ul>
94
+ <li>工作地点:<span><a href="http://www.yingjiesheng.com/beijing/">北京</a></span></li><li>有效日期:<span>2013年08月16日 至 2013年11月14日</span></li><li>招聘人数:<span>3 人</span></li><li>职位性质:兼职/实习</li>
95
+ </ul>
96
+ <h2>网站前端研发工程师(实习生) 职位描述:</h2>
97
+ <div class="j_i">
98
+ 工作职责:<br>
99
+ 1、参与RIA富交互产品的前端系统的开发与实现<br>
100
+ 2、参与Web与移动互联网前沿技术研究与新技术创新<br>
101
+ <br>
102
+ <br>
103
+ 职位要求: <br>
104
+ 1、熟悉HTML5/CSS3等相关技术<br>
105
+ 2、熟悉JavaScript、Ajax、DOM等前端技术,掌握面向对象编程思想<br>
106
+ 3、熟悉Bootstrap、YUI等前端开源框架<br>
107
+ 4、熟悉W3C标准,对表现与数据分离、Web语义化等有深刻理解<br>
108
+ 5、熟练使用Linux系统<br>
109
+ 6、有互联网公司技术岗位实习经验者优先<br>
110
+ 7、有强烈的上进心和求知欲,善于学习和运用新知识<br>
111
+ <br>
112
+ 对职位感兴趣者,欢迎您投递简历至:career@awedding.com.cn。标题注明应聘“网站前端研发工程师(实习生)”。&nbsp; </div>
113
+ <div class="job_sq"><span id="apply310147"><a href="#" class="apply" onclick="showjobapp('310147');return false;"><img style="vertical-align:middle;" src="http://my.yingjiesheng.com/images/display/apply.jpg" title="申请该职位"></a></span>
114
+ <span><a href="http://my.yingjiesheng.com/index.php/personal/resume.htm/?menu=2" target="_new"><img style="vertical-align:middle;" src="http://my.yingjiesheng.com/images/display/write.jpg" title="马上填简历"></a></span>
115
+
116
+
117
+ <br>
118
+
119
+ <span id="faver310147"><a href="#" class="faver" onclick="yjs_add_fav('%C3%C0%DE%B1%CD%A4%A3%A8%B1%B1%BE%A9%A3%A9%CE%C4%BB%AF%B7%A2%D5%B9%D3%D0%CF%DE%B9%AB%CB%BE-%CD%F8%D5%BE%C7%B0%B6%CB%D1%D0%B7%A2%B9%A4%B3%CC%CA%A6%A3%A8%CA%B5%CF%B0%C9%FA%A3%A9','%2Fjob_310147.html');return false;">加入求职记事本</a>&nbsp;&nbsp;|&nbsp;&nbsp;
120
+ <a href="/company_5437055.html">该公司其他职位</a></span>&nbsp;&nbsp;|&nbsp;&nbsp;
121
+ <span id="emailer310147"><a href="#" class="emailer" onclick="emailer('310147','%CD%F8%D5%BE%C7%B0%B6%CB%D1%D0%B7%A2%B9%A4%B3%CC%CA%A6%A3%A8%CA%B5%CF%B0%C9%FA%A3%A9');return false;">推荐给好友</a></span>&nbsp;&nbsp;|&nbsp;&nbsp;
122
+ <span id="job_jubao310147"><a href="#" class="emailer" style="font-weight: bold;color: #d00;" onclick="job_jubao('310147','%CD%F8%D5%BE%C7%B0%B6%CB%D1%D0%B7%A2%B9%A4%B3%CC%CA%A6%A3%A8%CA%B5%CF%B0%C9%FA%A3%A9');return false;">向应届生举报该职位!</a></span>
123
+ </div>
124
+ <script src="/globals/scripts/job_note.js" language="javascript" type="text/javascript"></script><div style="border: 1px dotted #ffcbcb; margin: 10px 50px; padding: 10px; background: #fff1f1;">
125
+ <a href="http://bbs.yingjiesheng.com/thread-1100509-1-1.html" target="_blank">求职tips:提高警惕识破虚假招聘</a>
126
+ </div>
127
+
128
+ </div>
129
+ <dl class="about">
130
+ <dt><a href="/company_5437055.html" target="_blank">美薇亭(北京)文化发展有限公司</a>简介</dt>
131
+ <dd><p>
132
+ 中国婚嫁产业年产值数千亿,然而,年收入过亿的公司寥寥。这既说明了行业处于初期,也意味着无限的潜力。<br>
133
+ 2008年,美薇亭成立伊始,就用远超出行业标准的原则来约束要求自己。我们并不满足做一家作坊式的、保守的小婚庆公司,“推动行业发展”“建立上市标杆企业”才是我们动力的来源。美薇亭立志于成为行业中的创新者和领航者。<br>
134
+ 2009年起,陆续成为电影《恋爱吧》、《失恋33天》和《我愿意》的婚礼指导专家,让婚礼服务行业引起了大众的关注;<br>
135
+ 2010年,分别接受《中国经营报》和《创业家》杂志专访,让主流媒体开始注意到婚礼行业的魅力及价值;<br>
136
+ 2011年夏,美薇亭第一个提出,专业分工的重要性。把宴会设计职能从婚礼顾问里拆分,成立专业的宴会设计部;<br>
137
+ 2011年冬,美薇亭召开中国第一届国际婚礼专家论坛。把美国顶级宴会设计师Preston Bailey、David Beahm,明星级婚礼摄影师Joe Buissink、Denis Reggie邀请到中国进行演讲,引起行业和媒体轰动。<br>
138
+ 我们的每一步,都在引领行业发展。<br>
139
+ 现在,度过生存期的美薇亭,邀请您的加入。在这个美好而初期的行业,一起打造“标杆性”上市公司。 </p>
140
+
141
+ <div class="txt"> <ol> <li><span>企业网址:</span><a href="http://www.awedding.com.cn" target="_blank">http://www.awedding.com.cn</a></li>
142
+
143
+ </ol>
144
+
145
+ </div>
146
+ </dd>
147
+ </dl>
148
+ <div class="pre_next"><span class="left_job">上一职位:<a href="/job_310146.html">美薇亭(北京)文化发展有限公司招聘PHP研发工程师(实习生)</a></span><span class="right_job">下一职位:<a href="/job_310148.html">唐山市乐业商贸有限公司招聘办公室文员</a></span>
149
+ </div>
150
+ </div>
151
+ <div class="mright">
152
+ <div class="g_right">
153
+ <script async="" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
154
+ <!-- my_yjs_right_300_250 -->
155
+ <ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-5664019590241836" data-ad-slot="2841409830" data-adsbygoogle-status="done"><ins style="display:inline-table;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px"><ins id="aswift_0_anchor" style="display:block;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px"><iframe width="300" height="250" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){w.location.replace(h)}}" id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;"></iframe></ins></ins></ins>
156
+ <script>
157
+ (adsbygoogle = window.adsbygoogle || []).push({});
158
+ </script>
159
+ </div>
160
+
161
+ <div class="gg_right">
162
+ <script type="text/javascript">
163
+ /*自定义标签云,创建于2013-8-8,my_right,300-250*/
164
+ var cpro_id = "u1340181";
165
+ </script>
166
+ <script src="http://cpro.baidustatic.com/cpro/ui/c.js" type="text/javascript"></script><script type="text/javascript" charset="utf-8" src="http://pos.baidu.com/ecom?di=u1340181&amp;dcb=BAIDU_CPRO_SETJSONADSLOT&amp;dtm=BAIDU_CPRO_SETJSONADSLOT&amp;dai=1&amp;jn=3&amp;ltu=http%3A%2F%2Fmy.yingjiesheng.com%2Fjob_310147.html&amp;liu=http%3A%2F%2Fmy.yingjiesheng.com%2Fjob_310147.html&amp;ltr=&amp;ps=417x910&amp;psr=1280x1024&amp;par=1280x1024&amp;pcs=1035x927&amp;pss=1210x1293&amp;pis=1035x927&amp;cfv=11&amp;ccd=24&amp;col=en-US&amp;coa=&amp;cec=GBK&amp;tpr=1376801689335&amp;kl=&amp;dis=16"></script><div style="display:none">-</div> <iframe id="cproIframe1" src="http://cpro.baidu.com/cpro/ui/uijs.php?rs=0&amp;tu=u1340181&amp;tn=baiduCustSTagLinkUnit&amp;n=yingjiesheng_cpr&amp;adn=1&amp;rsi1=250&amp;rsi0=300&amp;rad=&amp;rss0=&amp;rss1=&amp;conOP=0&amp;rss2=&amp;rss3=&amp;rss4=&amp;rss5=&amp;rss6=&amp;rsi5=4&amp;ts=1&amp;at=103&amp;ch=0&amp;cad=1&amp;aurl=&amp;rss7=&amp;cpa=1&amp;fv=11&amp;cn=1&amp;if=16&amp;word=http%3A%2F%2Fmy.yingjiesheng.com%2Fjob_310147.html&amp;refer=&amp;ready=1&amp;jk=20c9b89155f788e2&amp;jn=3&amp;lmt=1376772889&amp;csp=1280,1024&amp;csn=1280,1024&amp;ccd=24&amp;chi=2&amp;cja=true&amp;cpl=12&amp;cmi=89&amp;cce=true&amp;csl=en-US&amp;did=1&amp;rt=13&amp;dt=1376801690&amp;ev=16777216&amp;c01=0&amp;prt=1376801689335&amp;i3=f&amp;anatp=0&amp;stid=5&amp;lunum=6&amp;scale=&amp;skin=tabcloud_skin_1" width="300" height="250" align="center,center" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
167
+ </div>
168
+ <div class="b_right">
169
+ <script type="text/javascript">
170
+ /*300*250,创建于2013-8-7,my_yjs_right*/
171
+ var cpro_id = "u1339127";
172
+ </script>
173
+ <script src="http://cpro.baidustatic.com/cpro/ui/c.js" type="text/javascript"></script><script type="text/javascript" charset="utf-8" src="http://pos.baidu.com/ecom?di=u1339127&amp;dcb=BAIDU_CPRO_SETJSONADSLOT&amp;dtm=BAIDU_CPRO_SETJSONADSLOT&amp;dai=2&amp;jn=3&amp;ltu=http%3A%2F%2Fmy.yingjiesheng.com%2Fjob_310147.html&amp;liu=http%3A%2F%2Fmy.yingjiesheng.com%2Fjob_310147.html&amp;ltr=&amp;ps=667x910&amp;psr=1280x1024&amp;par=1280x1024&amp;pcs=1035x927&amp;pss=1210x1293&amp;pis=1035x927&amp;cfv=11&amp;ccd=24&amp;col=en-US&amp;coa=&amp;cec=GBK&amp;tpr=1376801689335&amp;kl=&amp;dis=16"></script><div style="display:none">-</div> <iframe id="cproIframe2" src="http://cpro.baidu.com/cpro/ui/uijs.php?rs=0&amp;tu=u1339127&amp;tn=text_default_300_250&amp;n=yingjiesheng_cpr&amp;adn=3&amp;rsi1=250&amp;rsi0=300&amp;rad=&amp;rss0=%23dadada&amp;rss1=%23FFFFFF&amp;conOP=0&amp;rss2=%230066cc&amp;rss3=%23666666&amp;rss4=%23008000&amp;rss5=&amp;rss6=%23e10900&amp;rsi5=4&amp;ts=1&amp;at=65&amp;ch=0&amp;cad=1&amp;aurl=&amp;rss7=&amp;cpa=1&amp;fv=11&amp;cn=0&amp;if=16&amp;word=http%3A%2F%2Fmy.yingjiesheng.com%2Fjob_310147.html&amp;refer=&amp;ready=1&amp;jk=198ac77c94b1e310&amp;jn=3&amp;lmt=1376772889&amp;csp=1280,1024&amp;csn=1280,1024&amp;ccd=24&amp;chi=2&amp;cja=true&amp;cpl=12&amp;cmi=89&amp;cce=true&amp;csl=en-US&amp;did=2&amp;rt=10&amp;dt=1376801690&amp;pn=1|baiduCustSTagLinkUnit|103&amp;ev=50331648&amp;c01=0&amp;prt=1376801689335&amp;i3=f&amp;anatp=0&amp;stid=0&amp;lunum=6&amp;scale=&amp;skin=&amp;xuanting=1" width="300" height="250" align="center,center" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" allowtransparency="true" baiduxuanting="baiduCproXuantingRoof"></iframe>
174
+ </div>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ <script type="text/javascript">
179
+ function index_log_user(c_name){
180
+ if(document.cookie.length>0){
181
+ c_start=document.cookie.indexOf(c_name + "=")
182
+ if(c_start!=-1){
183
+ c_start=c_start + c_name.length+1
184
+ c_end=document.cookie.indexOf(";",c_start)
185
+ if(c_end==-1) c_end=document.cookie.length
186
+ return unescape(document.cookie.substring(c_start,c_end))
187
+ }
188
+ }
189
+ return "";
190
+ }
191
+ function index_load_script(url){
192
+ document.writeln("<scr"+"ipt type='text/javascript' src='"+url+"'></sc"+"ript>");
193
+ }
194
+ var index_login_user = index_log_user('wespaceuser');
195
+ if(index_login_user!=null && index_login_user.length>1){
196
+ index_load_script('/index.php/personal/invite_notice_js/?jobshow=1');
197
+ }
198
+ </script>
199
+ <iframe width="0" height="0" id="ajaxform" name="ajaxform" style="display:none;"></iframe>
200
+ <script src="/index.php/display/jobview/310147.htm" language="javascript" type="text/javascript"></script>
201
+ <script src="/globals/scripts/extents.js" language="javascript" type="text/javascript"></script><div id="titlealtlayer" style="position:absolute;z-index:1000;padding:4px;font-size:12px;border:1px solid #000;background-color:#ffc;display:none;"></div>
202
+ <div class="com_foot box clearfix">
203
+ <a href="http://www.yingjiesheng.com/" target="_blank">应届生求职网</a> | <a href="http://www.yingjiesheng.com/about/partner/index.html">合作伙伴</a> | <a href="http://www.yingjiesheng.com/about/company.html">企业免费注册说明</a> | <a href="http://www.yingjiesheng.com/">帮助指南</a> | <a href="http://link.yingjiesheng.com/">友情链接</a> | <a href="http://www.yingjiesheng.com/about/about.html">联系我们</a><br>应届生求职网(<a href="http://www.yingjiesheng.com/">YingJieSheng.COM</a>) © 2005—2013 All Right Reserved
204
+ </div>
205
+ <script language="javascript" src="/globals/scripts/jquery_my_function.js"></script>
206
+ <script type="text/javascript" src="/globals/scripts/jquery_list_function.js"></script>
207
+ <!-- Baidu Button BEGIN -->
208
+ <script type="text/javascript" id="bdshare_js" data="type=slide&amp;img=1&amp;uid=11526" src="http://bdimg.share.baidu.com/static/js/bds_s_v2.js?cdnversion=382445"></script>
209
+
210
+ <script type="text/javascript">
211
+ document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + new Date().getHours();
212
+ </script>
213
+ <!-- Baidu Button END -->
214
+ <span style="display:none"><script language="javascript" src="http://count15.51yes.com/click.aspx?id=156561790&amp;logo=5"></script><a href="http://countt.51yes.com/index.aspx?id=156561790" target="_blank"><img width="20" height="20" border="0" hspace="0" vspace="0" src="http://count15.51yes.com/count5.gif" alt="51YES网站统计系统"></a><iframe marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" src="http://count15.51yes.com/sa.htm?id=156561790&amp;refe=&amp;location=http%3A//my.yingjiesheng.com/job_310147.html&amp;color=24x&amp;resolution=1280x1024&amp;returning=0&amp;language=undefined&amp;ua=Mozilla/5.0%20%28X11%3B%20Linux%20x86_64%29%20AppleWebKit/537.36%20%28KHTML%2C%20like%20Gecko%29%20Chrome/28.0.1500.95%20Safari/537.36" height="0" width="0"></iframe><script language="javascript" src="http://count18.51yes.com/click.aspx?id=183141866&amp;logo=5"></script><a href="http://countt.51yes.com/index.aspx?id=183141866" target="_blank"><img width="20" height="20" border="0" hspace="0" vspace="0" src="http://count18.51yes.com/count5.gif" alt="51YES网站统计系统"></a><iframe marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" src="http://count18.51yes.com/sa.htm?id=183141866&amp;refe=&amp;location=http%3A//my.yingjiesheng.com/job_310147.html&amp;color=24x&amp;resolution=1280x1024&amp;returning=0&amp;language=undefined&amp;ua=Mozilla/5.0%20%28X11%3B%20Linux%20x86_64%29%20AppleWebKit/537.36%20%28KHTML%2C%20like%20Gecko%29%20Chrome/28.0.1500.95%20Safari/537.36" height="0" width="0"></iframe></span>
215
+
216
+
217
+ </body></html>
@@ -0,0 +1,619 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <title>前端实习_招聘信息_应届生求职网</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <meta http-equiv="Content-Language" content="zh-CN">
8
+ <meta name="keywords" content="前端实习 招聘信息 应届生">
9
+ <meta name="description"
10
+ content="共有1386条前端实习招聘信息。美薇亭(北京)文化发展有限公司网站前端研发工程师(实习生) [北京]猿题库招聘Web前端工程师 [上海]DeNA china 招聘前端实习生 广州淘趣信息科技有限公司前端工程师实习生 [北京]吉石卉(北京)文化发展有限公司网站前端研发工程师 ">
11
+ <link rel="stylesheet" href="./css/style.css" type="text/css">
12
+ </head>
13
+ <body>
14
+
15
+ <div id="wrap" style="_width:expression(document.body.clientWidth &lt; 1024? &quot;&quot;:&quot;1024px&quot;);">
16
+ <a href="http://s.yingjiesheng.com/" class="logo"><img src="./images/logo_search_s1.gif"></a>
17
+
18
+ <script>
19
+ function show(id) {
20
+ if (id == "job") {
21
+ document.getElementById("menu1").className = "menuOn menuJobOn";
22
+ document.getElementById("menu2").className = "menuOff";
23
+ document.getElementById("searchJob").style.display = "";
24
+ document.getElementById("searchMj").style.display = "none";
25
+ }
26
+ else if (id == "mj") {
27
+ document.getElementById("menu1").className = "menuOff";
28
+ document.getElementById("menu2").className = "menuOn menuMjOn";
29
+ document.getElementById("searchMj").style.display = "";
30
+ document.getElementById("searchJob").style.display = "none";
31
+ }
32
+ }
33
+ </script>
34
+ <div class="search">
35
+ <div class="menu s_clear">
36
+ <a id="menu1" href="#" onclick="show('job');" class="menuOn menuJobOn">搜职位</a>
37
+ <a id="menu2" href="#" onclick="show('mj');" class="menuOff">搜面经</a>
38
+ </div>
39
+ <form name="jobForm" method="get" id="searchJob" action="result.jsp" class="searchForm searchFormJob">
40
+
41
+ <div><input name="keyword" type="text" size="56" value="前端实习" class="text"></div>
42
+
43
+ <div><span class="sel">
44
+ <select name="city" class="cityOption" onchange="changeCity(this.options[selectedIndex].value,'cityarea1');">
45
+ <option value="0" selected="">地区</option>
46
+ <option value="349">上海</option>
47
+ <option value="56">北京</option>
48
+ <option value="85">广州</option>
49
+ <option value="102">深圳</option>
50
+ <option value="186">武汉</option>
51
+ <option value="217">南京</option>
52
+ <option value="376">天津</option>
53
+ <option value="352">成都</option>
54
+ <option value="999">其它</option>
55
+ </select>
56
+ </span></div>
57
+ <span id="cityarea1"></span>
58
+
59
+
60
+ <input name="do" value="1" type="hidden">
61
+ <input id="doSearch" type="submit" value="" class="btnJob"><a href="help.html">搜索必读</a>
62
+
63
+
64
+ </form>
65
+
66
+ <form name="mjForm" id="searchMj" method="get" action="http://s.yingjiesheng.com/mj/result.jsp"
67
+ class="searchForm searchFormMj" style="display:none;">
68
+
69
+ <div><input name="keyword" type="text" size="56" value="前端实习" class="text" maxlength="255"></div>
70
+ <input id="doSearch" type="submit" value="" class="btnMj"> <a href="http://s.yingjiesheng.com/help.html"
71
+ target="_blank">搜索必读</a>
72
+
73
+
74
+ </form>
75
+
76
+ <div class="resultStats">&nbsp;&nbsp;共找到1386条<strong>&nbsp;&nbsp;前端实习招聘</strong>信息</div>
77
+
78
+
79
+ </div>
80
+ <div class="clear"></div>
81
+
82
+
83
+ <script>
84
+ if (!document.getElementById)
85
+ document.getElementById = function () {
86
+ return null;
87
+ }
88
+ function initializeMenu(menuId, actuatorId) {
89
+ var menu = document.getElementById(menuId);
90
+ var actuator = document.getElementById(actuatorId);
91
+ if (menu == null || actuator == null) return;
92
+ //if (window.opera) return; // I'm too tired
93
+ actuator.onclick = function () {
94
+ var display = menu.style.display;
95
+ this.parentNode.style.backgroundImage =
96
+ (display == "none") ? "url(./images/out.gif)" : "url(./images/shut.gif)";
97
+ menu.style.display = (display == "none") ? "block" : "none";
98
+ return false;
99
+ }
100
+ }
101
+ window.onload = function () {
102
+ initializeMenu("timeMenu", "time");
103
+ initializeMenu("pxMenu", "px");
104
+ initializeMenu("xgMenu", "xg");
105
+ initializeMenu("flMenu", "fl");
106
+ initializeMenu("topMenu", "top");
107
+ initializeMenu("nowMenu", "now");
108
+ }
109
+ </script>
110
+ <div id="container" style="position:relative;zoom:1;">
111
+
112
+
113
+ <div class="column1">
114
+
115
+
116
+ <div id="google_guanggao" style="padding: 0px 0px 10px 6px; font-weight: normal; text-align: center; height: 211px;">
117
+ <iframe frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true" scrolling="no" width="100%"
118
+ name="{&quot;name&quot;:&quot;master-1&quot;,&quot;slave-1-1&quot;:{&quot;lines&quot;:2,&quot;colorDomainLink&quot;:&quot;#008000&quot;,&quot;colorBackground&quot;:&quot;#FFF&quot;,&quot;fontFamily&quot;:&quot;\u5b8b\u4f53&quot;,&quot;linkTarget&quot;:&quot;_blank&quot;,&quot;fontSizeTitle&quot;:&quot;16px&quot;,&quot;fontSizeDescription&quot;:&quot;13px&quot;,&quot;fontSizeDomainLink&quot;:&quot;13px&quot;,&quot;rolloverAdBackgroundColor&quot;:&quot;#F1FFDC&quot;,&quot;adIconLocation&quot;:&quot;ad-left&quot;,&quot;plaFormat&quot;:&quot;twoColumn&quot;},&quot;slave-2-1&quot;:{&quot;lines&quot;:3,&quot;colorDomainLink&quot;:&quot;#008000&quot;,&quot;colorBackground&quot;:&quot;#FFF&quot;,&quot;fontFamily&quot;:&quot;\u5b8b\u4f53&quot;,&quot;linkTarget&quot;:&quot;_blank&quot;,&quot;fontSizeTitle&quot;:&quot;16px&quot;,&quot;fontSizeDescription&quot;:&quot;13px&quot;,&quot;fontSizeDomainLink&quot;:&quot;13px&quot;,&quot;rolloverAdBackgroundColor&quot;:&quot;#F1FFDC&quot;,&quot;adIconLocation&quot;:&quot;ad-left&quot;,&quot;plaFormat&quot;:&quot;twoColumn&quot;},&quot;master-1&quot;:{&quot;lines&quot;:2,&quot;colorDomainLink&quot;:&quot;#008000&quot;,&quot;colorBackground&quot;:&quot;#FFF&quot;,&quot;fontFamily&quot;:&quot;\u5b8b\u4f53&quot;,&quot;linkTarget&quot;:&quot;_blank&quot;,&quot;fontSizeTitle&quot;:&quot;16px&quot;,&quot;fontSizeDescription&quot;:&quot;13px&quot;,&quot;fontSizeDomainLink&quot;:&quot;13px&quot;,&quot;rolloverAdBackgroundColor&quot;:&quot;#F1FFDC&quot;,&quot;adIconLocation&quot;:&quot;ad-left&quot;,&quot;plaFormat&quot;:&quot;twoColumn&quot;}}"
119
+ id="master-1"
120
+ src="http://www.google.com/uds/afs?q=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0%20%E6%8B%9B%E8%81%98&amp;client=pub-5664019590241836&amp;channel=0042640440&amp;hl=zh-CN&amp;r=m&amp;oe=UTF-8&amp;ie=UTF-8&amp;fexp=21404&amp;format=n3%7Cn4%7Cn6&amp;ad=n13&amp;nocache=9281376801294606&amp;num=0&amp;output=uds_ads_only&amp;v=3&amp;adext=as1%2Csr1&amp;u_his=2&amp;u_tz=480&amp;dt=1376801294607&amp;u_w=1280&amp;u_h=1024&amp;biw=1035&amp;bih=942&amp;psw=1035&amp;psh=1613&amp;frm=0&amp;ui=uv3sLsRcc-af2st16sd13sv13-af2st16sd13sv13-af3st16sd13sv13&amp;rurl=http%3A%2F%2Fs.yingjiesheng.com%2Fresult.jsp%3Fkeyword%3D%25E5%2589%258D%25E7%25AB%25AF%25E5%25AE%259E%25E4%25B9%25A0%26city%3D0%26jobtype%3D0%26do%3D1%26stype%3D0#master-1"
121
+ style="visibility: visible; height: 211px;"></iframe>
122
+ </div>
123
+
124
+ <ul class="searchResult">
125
+
126
+
127
+ <li>
128
+ <div>
129
+ <h3 class="title"><a href="http://my.yingjiesheng.com/job_310147.html" target="_blank">美薇亭(北京)文化发展有限公司网站<span
130
+ class="key">前端</span>研发工程师(<span class="key">实习</span>生)</a></h3>
131
+
132
+ 职位简介:标准,对表现与数据分离、Web语义化等有深刻理解5、熟练使用Linux系统6、有互联网公司技术岗位<span class="key">实习</span>经验者优先7、有强烈的上进心和求知欲,善于学习和运用新知识对职位感兴趣者,欢迎您投递简历至:career@awedding.com.cn。标题注明应聘“网站<span
133
+ class="key">前端</span>研发工程师(<span class="key">实习</span>生)”。 中国婚嫁产业...<br>
134
+
135
+ <p><span class="r date" title="发布日期">2013-08-16</span>
136
+ 信息来源:本站 | 兼职 | 北京
137
+
138
+ </p>
139
+ </div>
140
+ </li>
141
+
142
+ <li>
143
+ <div>
144
+ <h3 class="title"><a href="http://www.yingjiesheng.com/job-001-628-129.html" target="_blank">[北京]猿题库招聘Web<span
145
+ class="key">前端</span>工程师</a></h3>
146
+
147
+ 职位简介:发信人: bineon (bineon), 信区: Career_Campus标 题: [北京][互联网教育创业][帮小孩考清华]猿题库招聘Web<span class="key">前端</span>工程师发信站:
148
+ 水木社区 (Fri Aug 16 12:09:03 2013), 站内我们的产品希望能帮小孩考清华北大:)不了解我们的朋友请移步...<br>
149
+
150
+ <p><span class="r date" title="发布日期">2013-08-16</span>
151
+ 信息来源:水木社区 | 全职 | 北京
152
+ <br>专业分类:<a href="http://www.yingjiesheng.com/major/jisuanji/">计算机电子</a>
153
+ </p>
154
+ </div>
155
+ </li>
156
+
157
+ <li>
158
+ <div>
159
+ <h3 class="title"><a href="http://www.yingjiesheng.com/job-001-627-779.html" target="_blank">[上海]DeNA china
160
+ 招聘<span class="key">前端</span><span class="key">实习</span>生</a></h3>
161
+
162
+ 职位简介:发信人: kiming (10SS|椽川), 信区: Job_Intern标 题: DeNA china 招聘<span class="key">前端</span><span
163
+ class="key">实习</span>生发信站: 日月光华 (2013年08月15日14:22:56 星期四)技术要求1、熟练掌握基本的web<span class="key">前端</span>开发技术,包括:CSS、HTML/XHTML、
164
+ JavaScript等...<br>
165
+
166
+ <p><span class="r date" title="发布日期">2013-08-15</span>
167
+ 信息来源:复旦BBS | 兼职 | 上海
168
+
169
+ </p>
170
+ </div>
171
+ </li>
172
+
173
+ <li>
174
+ <div>
175
+ <h3 class="title"><a href="http://my.yingjiesheng.com/job_309823.html" target="_blank">广州淘趣信息科技有限公司<span
176
+ class="key">前端</span>工程师<span class="key">实习</span>生</a></h3>
177
+
178
+ 职位简介:岗位职责: 1、与网站技术部、网站运营部等部门紧密合作,负责产品的规划、设计、实施及运营,编写产品/需求文档; 2、用户需求调研,收集反馈意见并分析、筛选,对用户行为进行分析;
179
+ 3、市场竞争分析,分析竞争对手产品及行业内外所有相关产品; 4、持续了解用户,分析用户使用习惯,配合产品经理研究产品发展方...<br>
180
+
181
+ <p><span class="r date" title="发布日期">2013-08-15</span>
182
+ 信息来源:本站 | 兼职 | 广州
183
+
184
+ </p>
185
+ </div>
186
+ </li>
187
+
188
+ <li>
189
+ <div>
190
+ <h3 class="title"><a href="http://www.yingjiesheng.com/job-001-627-992.html" target="_blank">[北京]吉石卉(北京)文化发展有限公司网站<span
191
+ class="key">前端</span>研发工程师</a></h3>
192
+
193
+ 职位简介:发信人: dazhi (dazhi), 信区: ITjob标 题: 创业公司招聘网站<span class="key">前端</span>研发工程师(<span class="key">实习</span>生)发信站:
194
+ 水木社区 (Thu Aug 15 22:27:03 2013), 站内公司:吉石卉(北京)文化发展有限公司,目标在中国数千亿的婚礼产业,创建第一家互联网平台招聘岗位:网站<span class="key">前端</span>...<br>
195
+
196
+ <p><span class="r date" title="发布日期">2013-08-15</span>
197
+ 信息来源:水木社区 | 兼职 | 北京
198
+
199
+ </p>
200
+ </div>
201
+ </li>
202
+
203
+ <li>
204
+ <div>
205
+ <h3 class="title"><a href="http://my.yingjiesheng.com/job_308852.html" target="_blank">上海市对外服务有限公司<span
206
+ class="key">前端</span>开发工程师(<span class="key">实习</span>转正式)</a></h3>
207
+
208
+ 职位简介:要求:2014届
209
+ 本科,计算机相关专业,掌握Html/CSS/Javascript,对前端概念有大致的理解,有兴趣去对前端性能和架构进行优化和构建;工作内容:1.熟悉前端开发基本流程,掌握开发技能与知识,短时间内适应正式开发。
210
+ 2.了解产品后端技术实现,提供对应的前端解决方案,并配合后端工程师完成....<br>
211
+
212
+ <p><span class="r date" title="发布日期">2013-08-14</span>
213
+ 信息来源:本站 | 兼职 | 上海
214
+ <br>专业分类:<a href="http://www.yingjiesheng.com/major/jisuanji/">计算机电子</a>
215
+ </p>
216
+ </div>
217
+ </li>
218
+
219
+ <li>
220
+ <div>
221
+ <h3 class="title"><a href="http://my.yingjiesheng.com/job_309265.html" target="_blank">上海复歌信息科技有限公司Web<span
222
+ class="key">前端</span>工程师(JS)</a></h3>
223
+
224
+ 职位简介: HTML5,CSS3 将优先考虑6. 1年以上工作经验【待遇】工作地点在南京西路,工资+奖金+五险一金+期权(<span class="key">实习</span>待遇面议)如有兴趣,非常欢迎你联系我们,hr@fugetech.com,或直接打电话15021300611
225
+ 郭为 复歌科技:Your solution is yet...<br>
226
+
227
+ <p><span class="r date" title="发布日期">2013-08-14</span>
228
+ 信息来源:本站 | 全职 | 上海
229
+
230
+ </p>
231
+ </div>
232
+ </li>
233
+
234
+ <li>
235
+ <div>
236
+ <h3 class="title"><a href="http://www.yingjiesheng.com/job-001-627-483.html" target="_blank">[上海]复歌科技招聘Web<span
237
+ class="key">前端</span>工程师</a></h3>
238
+
239
+ 职位简介:发信人: guogigiguo (bibby), 信区: Job_IT标 题: 【上海招聘】Web<span class="key">前端</span>工程师(JS)发信站: 日月光华
240
+ (2013年08月14日17:36:14 星期三) 【关于我们】我们是一家技术公司,核心是自己研发的产品,帮客户投互联网广告,用统计算法来提升广告效果。我们的...<br>
241
+
242
+ <p><span class="r date" title="发布日期">2013-08-14</span>
243
+ 信息来源:复旦BBS | 全职 | 上海
244
+
245
+ </p>
246
+ </div>
247
+ </li>
248
+
249
+ <li>
250
+ <div>
251
+ <h3 class="title"><a href="http://www.yingjiesheng.com/job-001-626-997.html" target="_blank">[北京]udika招聘<span
252
+ class="key">前端</span>开发<span class="key">实习</span>生</a></h3>
253
+
254
+ 职位简介:发信人: udika (udika), 信区: Intern标 题: 来自硅谷的科研云计算公司招聘<span class="key">前端</span>开发<span class="key">实习</span>生发信站:
255
+ 水木社区 (Tue Aug 13 13:48:42 2013), 站内我们是一家源自硅谷,落户在北京的创业公司。目前公司的科研云计算项目正在招聘Web<span class="key">实习</span>工程师。这个项目...<br>
256
+
257
+ <p><span class="r date" title="发布日期">2013-08-13</span>
258
+ 信息来源:水木社区 | 兼职 | 北京
259
+ <br>专业分类:<a href="http://www.yingjiesheng.com/major/shengwu/">生物工程</a><a
260
+ href="http://www.yingjiesheng.com/major/jisuanji/">计算机电子</a>
261
+ </p>
262
+ </div>
263
+ </li>
264
+
265
+ <li>
266
+ <div>
267
+ <h3 class="title"><a href="http://my.yingjiesheng.com/job_308407.html" target="_blank">北京神州中联教育科技有限公司web<span
268
+ class="key">前端</span>开发<span class="key">实习</span>生</a></h3>
269
+
270
+ 职位简介:、JavaScript; 3、熟练掌握jQuery、Mootools、Prototype、ExtJS等一种或多种<span class="key">前端</span>开发框架
271
+ 4、有良好的学习能力、沟通能力和领悟能力,能够承受较大的工作压力; 5、有良好的团队合作意识,耐心、诚恳,有强烈的责任心和积极主动的工作态度; 6、熟悉网站建设流程,对设计潮流把握...<br>
272
+
273
+ <p><span class="r date" title="发布日期">2013-08-12</span>
274
+ 信息来源:本站 | 兼职 | 北京
275
+
276
+ </p>
277
+ </div>
278
+ </li>
279
+
280
+ </ul>
281
+
282
+ <div id="google_guanggao2" style="padding-left: 6px; font-weight: normal; text-align: center;">
283
+ <iframe frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true" scrolling="no" width="100%"
284
+ name="slave-1-1" id="slave-1-1"
285
+ src="http://www.google.com/uds/afs?q=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0%20%E6%8B%9B%E8%81%98&amp;client=pub-5664019590241836&amp;channel=6861675638&amp;hl=zh-CN&amp;r=s&amp;oe=UTF-8&amp;ie=UTF-8&amp;fexp=21404&amp;format=n4&amp;ad=n0&amp;nocache=8991376801294600&amp;num=0&amp;output=uds_ads_only&amp;v=3&amp;adext=as1%2Csr1&amp;rurl=http%3A%2F%2Fs.yingjiesheng.com%2Fresult.jsp%3Fkeyword%3D%25E5%2589%258D%25E7%25AB%25AF%25E5%25AE%259E%25E4%25B9%25A0%26city%3D0%26jobtype%3D0%26do%3D1%26stype%3D0#slave-1-1"
286
+ style="visibility: hidden; height: 0px;"></iframe>
287
+ </div>
288
+
289
+
290
+ <div class="tipSearch"><b>小提示:</b>您也可以通过使用仅标题搜索:<a href="t_%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0">前端实习</a></div>
291
+
292
+
293
+ <div class="tip">
294
+
295
+ <a href="http://top.yingjiesheng.com/feedback.php?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0" target="_blank">对结果不满意?</a>,建议:
296
+
297
+ <a href="http://web.yingjiesheng.com/cse/search.html?cx=011654136792704089197%3A-nrmkck7m3w&amp;cof=FORID%3A11&amp;ie=UTF-8&amp;q=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0%E6%8B%9B%E8%81%98"
298
+ target="_blank">
299
+ 在Google中搜索“<span class="key">前端实习</span>”招聘信息</a> &nbsp;
300
+ <br><br>
301
+
302
+ </div>
303
+ </div>
304
+
305
+ <div class="column_left">
306
+ <ul id="menuList" class="box">
307
+ <li class="menubar" style="background: url(./images/shut.gif) no-repeat 0em 0.3em">
308
+ <a href="#" id="time" class="strong">时间</a>
309
+ <ul id="timeMenu" style="display: none;">
310
+ <li><a
311
+ href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=0&amp;period=1&amp;sort=score&amp;jobtype=0">最近一天</a>
312
+ </li>
313
+ <li><a
314
+ href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=0&amp;period=2&amp;sort=score&amp;jobtype=0">最近三天</a>
315
+ </li>
316
+ <li><a
317
+ href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=0&amp;period=3&amp;sort=score&amp;jobtype=0">最近一周</a>
318
+ </li>
319
+ <li><a
320
+ href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=0&amp;period=4&amp;sort=score&amp;jobtype=0">最近一月</a>
321
+ </li>
322
+ <li>全部</li>
323
+
324
+ </ul>
325
+ </li>
326
+ <li class="menubar" style="background: url(./images/shut.gif) no-repeat 0em 0.3em">
327
+ <a href="#" id="px" class="strong">结果排序</a>
328
+ <ul id="pxMenu" style="display: none;">
329
+ <li><a
330
+ href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=0&amp;period=0&amp;jobtype=0&amp;sort=date">按时间</a>
331
+ </li>
332
+ <li>按相关度</li>
333
+ </ul>
334
+ </li>
335
+
336
+ <li class="menubar" style="background: url(./images/out.gif) no-repeat 0em 0.3em">
337
+ <a href="#" id="xg" class="strong">相关搜索</a>
338
+ <ul id="xgMenu">
339
+ <li><a href="s_%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91%E5%B7%A5%E7%A8%8B%E5%B8%88">前端开发工程师</a></li>
340
+ <li><a href="s_web%E5%89%8D%E7%AB%AF">web前端</a></li>
341
+ <li><a href="s_Web%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91">Web前端开发</a></li>
342
+ <li><a href="s_%E5%89%8D%E7%AB%AF">前端</a></li>
343
+ <li><a href="s_%E4%BA%92%E8%81%94%E7%BD%91%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91%E5%B7%A5%E7%A8%8B%E5%B8%88">互联网前端开发工程师</a>
344
+ </li>
345
+ <li><a href="s_%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91">前端开发</a></li>
346
+ <li><a href="s_%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91">前端开发</a></li>
347
+ <li><a href="s_%E6%95%B0%E5%AD%97+%E5%89%8D%E7%AB%AF">数字 前端</a></li>
348
+ <li><a href="s_%E5%89%8D%E7%AB%AF+%E8%AE%BE%E8%AE%A1">前端 设计</a></li>
349
+ <li><a href="s_%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91+%E9%87%8D%E5%BA%86">前端开发 重庆</a></li>
350
+ <li><a href="s_web%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91%E5%B7%A5%E7%A8%8B%E5%B8%88">web前端开发工程师</a></li>
351
+ <li><a href="s_%E5%89%8D%E7%AB%AF%E8%AE%BE%E8%AE%A1">前端设计</a></li>
352
+ <li><a href="s_web++%E5%89%8D%E7%AB%AF%E8%AE%BE%E8%AE%A1">web 前端设计</a></li>
353
+ <li><a href="s_Web%E9%A1%B5%E9%9D%A2%E5%89%8D%E7%AB%AF">Web页面前端</a></li>
354
+ <li><a href="s_%E5%AE%9E%E4%B9%A0%E7%94%9F">实习生</a></li>
355
+ </ul>
356
+ </li>
357
+
358
+ <li class="menubar" style="background: url(./images/shut.gif) no-repeat 0em 0.3em">
359
+ <a href="#" id="top" class="strong">今日搜索风云榜</a>
360
+ <ul id="topMenu" style="display: none;">
361
+ <li><a href="s_%E4%B8%AD%E5%9B%BD%E9%93%B6%E8%A1%8C">中国银行</a> <a
362
+ href="http://www.jobyun.com/s_%D6%D0%B9%FA%D2%F8%D0%D0" title="在职云网搜索" target="_blank"><img
363
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
364
+ <li><a href="s_%E4%B8%AD%E4%BF%A1%E9%93%B6%E8%A1%8C">中信银行</a> <a
365
+ href="http://www.jobyun.com/s_%D6%D0%D0%C5%D2%F8%D0%D0" title="在职云网搜索" target="_blank"><img
366
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
367
+ <li><a href="s_%E5%BE%B7%E5%8B%A4">德勤</a> <a href="http://www.jobyun.com/s_%B5%C2%C7%DA" title="在职云网搜索"
368
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
369
+ border="0"></a></li>
370
+ <li><a href="s_%E6%B8%A3%E6%89%93%E9%93%B6%E8%A1%8C">渣打银行</a> <a
371
+ href="http://www.jobyun.com/s_%D4%FC%B4%F2%D2%F8%D0%D0" title="在职云网搜索" target="_blank"><img
372
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
373
+ <li><a href="s_%E5%8D%8E%E4%B8%BA">华为</a> <a href="http://www.jobyun.com/s_%BB%AA%CE%AA" title="在职云网搜索"
374
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
375
+ border="0"></a></li>
376
+ <li><a href="s_%E4%BA%A4%E9%80%9A%E9%93%B6%E8%A1%8C">交通银行</a> <a
377
+ href="http://www.jobyun.com/s_%BD%BB%CD%A8%D2%F8%D0%D0" title="在职云网搜索" target="_blank"><img
378
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
379
+ <li><a href="s_%E6%8B%9B%E5%95%86%E9%93%B6%E8%A1%8C">招商银行</a> <a
380
+ href="http://www.jobyun.com/s_%D5%D0%C9%CC%D2%F8%D0%D0" title="在职云网搜索" target="_blank"><img
381
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
382
+ <li><a href="s_%E7%99%BE%E5%BA%A6">百度</a> <a href="http://www.jobyun.com/s_%B0%D9%B6%C8" title="在职云网搜索"
383
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
384
+ border="0"></a></li>
385
+ <li><a href="s_%E5%AE%9D%E6%B4%81">宝洁</a> <a href="http://www.jobyun.com/s_%B1%A6%BD%E0" title="在职云网搜索"
386
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
387
+ border="0"></a></li>
388
+ <li><a href="s_%E5%BB%BA%E8%AE%BE%E9%93%B6%E8%A1%8C">建设银行</a> <a
389
+ href="http://www.jobyun.com/s_%BD%A8%C9%E8%D2%F8%D0%D0" title="在职云网搜索" target="_blank"><img
390
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
391
+ </ul>
392
+ </li>
393
+ <li class="menubar" style="background: url(./images/shut.gif) no-repeat 0em 0.3em">
394
+ <a href="#" id="now" class="strong">网友正在搜</a>
395
+ <ul id="nowMenu" style="display: none;">
396
+ <li><a href="s_%E9%99%95%E8%A5%BF%E5%AE%9D%E6%88%90%E8%88%AA%E7%A9%BA%E4%BB%AA%E8%A1%A8">陕西宝成航空仪表</a> <a
397
+ href="http://www.jobyun.com/s_%C9%C2%CE%F7%B1%A6%B3%C9%BA%BD%BF%D5%D2%C7%B1%ED" title="在职云网搜索"
398
+ target="_blank"><img src="./images/jobyun_s_new1.gif" border="0"></a></li>
399
+ <li><a href="s_%E6%B8%A3%E6%89%93">渣打</a> <a href="http://www.jobyun.com/s_%D4%FC%B4%F2" title="在职云网搜索"
400
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
401
+ border="0"></a></li>
402
+ <li><a href="s_%E7%BE%8E%E7%9A%84">美的</a> <a href="http://www.jobyun.com/s_%C3%C0%B5%C4" title="在职云网搜索"
403
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
404
+ border="0"></a></li>
405
+ <li><a href="s_%E5%85%AC%E5%8A%A1%E5%91%98+OR+%E4%BA%8B%E4%B8%9A%E5%8D%95%E4%BD%8D">公务员 OR 事业单位</a></li>
406
+ <li><a href="s_%E5%8D%8E%E6%B3%B0%E8%B5%84%E4%BA%A7%E7%AE%A1%E7%90%86%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">华泰资产管理有限公司</a>
407
+ </li>
408
+ <li><a href="s_%E5%8D%9A%E5%A3%AB">博士</a> <a href="http://www.jobyun.com/s_%B2%A9%CA%BF" title="在职云网搜索"
409
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
410
+ border="0"></a></li>
411
+ <li><a href="s_%E4%B8%AD%E5%9B%BD%E5%8C%BB%E8%8D%AF%E9%9B%86%E5%9B%A2">中国医药集团</a> <a
412
+ href="http://www.jobyun.com/s_%D6%D0%B9%FA%D2%BD%D2%A9%BC%AF%CD%C5" title="在职云网搜索" target="_blank"><img
413
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
414
+ <li><a
415
+ href="s_%E4%B8%8A%E6%B5%B7%E9%B8%BF%E5%BE%97%E5%88%A9%E9%87%8D%E5%B7%A5%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">上海鸿得利重工股份有限公司</a>
416
+ </li>
417
+ <li><a href="s_%E8%8B%B1%E8%AF%AD%E6%B5%81%E5%88%A9">英语流利</a> <a
418
+ href="http://www.jobyun.com/s_%D3%A2%D3%EF%C1%F7%C0%FB" title="在职云网搜索" target="_blank"><img
419
+ src="./images/jobyun_s_new1.gif" border="0"></a></li>
420
+ <li><a href="s_%E5%8B%98%E5%AF%9F">勘察</a> <a href="http://www.jobyun.com/s_%BF%B1%B2%EC" title="在职云网搜索"
421
+ target="_blank"><img src="./images/jobyun_s_new1.gif"
422
+ border="0"></a></li>
423
+ </ul>
424
+ </li>
425
+
426
+
427
+ </ul>
428
+
429
+
430
+ </div>
431
+
432
+
433
+ <div class="column2">
434
+ <div id="google_guanggao_right" style="font-weight: normal; text-align: center;">
435
+ <iframe frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true" scrolling="no" width="100%"
436
+ name="slave-2-1" id="slave-2-1"
437
+ src="http://www.google.com/uds/afs?q=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0%20%E6%8B%9B%E8%81%98&amp;client=pub-5664019590241836&amp;channel=6861675638&amp;hl=zh-CN&amp;r=s&amp;oe=UTF-8&amp;ie=UTF-8&amp;fexp=21404&amp;format=n6&amp;ad=n0&amp;nocache=3811376801294590&amp;num=0&amp;output=uds_ads_only&amp;v=3&amp;adext=as1%2Csr1&amp;rurl=http%3A%2F%2Fs.yingjiesheng.com%2Fresult.jsp%3Fkeyword%3D%25E5%2589%258D%25E7%25AB%25AF%25E5%25AE%259E%25E4%25B9%25A0%26city%3D0%26jobtype%3D0%26do%3D1%26stype%3D0#slave-2-1"
438
+ style="visibility: hidden; height: 0px;"></iframe>
439
+ </div>
440
+ </div>
441
+
442
+
443
+ </div>
444
+ <div class="clear"></div>
445
+
446
+ <div class="page">
447
+ 1 <a
448
+ href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=10&amp;period=0&amp;sort=score&amp;jobtype=0">2</a>
449
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=20&amp;period=0&amp;sort=score&amp;jobtype=0">3</a>
450
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=30&amp;period=0&amp;sort=score&amp;jobtype=0">4</a>
451
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=40&amp;period=0&amp;sort=score&amp;jobtype=0">5</a>
452
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=50&amp;period=0&amp;sort=score&amp;jobtype=0">6</a>
453
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=60&amp;period=0&amp;sort=score&amp;jobtype=0">7</a>
454
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=70&amp;period=0&amp;sort=score&amp;jobtype=0">8</a>
455
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=80&amp;period=0&amp;sort=score&amp;jobtype=0">9</a>
456
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=90&amp;period=0&amp;sort=score&amp;jobtype=0">10</a>
457
+ <a href="result.jsp?keyword=%E5%89%8D%E7%AB%AF%E5%AE%9E%E4%B9%A0&amp;do=1&amp;start=10&amp;period=0&amp;sort=score&amp;jobtype=0">下一页</a>
458
+
459
+ </div>
460
+ <script type="text/javascript">
461
+ function changeCity(val, cid) {
462
+ if (val == "999") {
463
+ document.getElementById(cid).innerHTML = "<input type=\"text\" name=\"city2\" class=\"city2\" size=\"8\" > ";
464
+ }
465
+ else {
466
+ document.getElementById(cid).innerHTML = "";
467
+ }
468
+ }
469
+ function submitSearch(formname) {
470
+ var myform = eval("document." + formname);
471
+
472
+ }
473
+ </script>
474
+ <div class="searchFormBottom">
475
+ <form id="searchForm2" name="searchForm2" action="result.jsp">
476
+ <input name="keyword" type="text" size="40" value="前端实习" maxlength="255">
477
+ <select name="city" class="cityOption" onchange="changeCity(this.options[selectedIndex].value,'cityarea2');">
478
+ <option value="0" selected="">地区</option>
479
+ <option value="349">上海</option>
480
+ <option value="56">北京</option>
481
+ <option value="85">广州</option>
482
+ <option value="102">深圳</option>
483
+ <option value="186">武汉</option>
484
+ <option value="217">南京</option>
485
+ <option value="376">天津</option>
486
+ <option value="352">成都</option>
487
+ <option value="999">其它</option>
488
+ </select>
489
+ <span id="cityarea2"></span>
490
+ <select name="jobtype" class="tpyeOption">
491
+ <option value="0" selected="">全/兼</option>
492
+ <option value="1">全职</option>
493
+ <option value="2">兼职</option>
494
+ </select>
495
+ <input name="do" value="1" type="hidden">
496
+ <input name="c" value="0" type="hidden">
497
+ <input id="doSearch" type="submit" value=" 搜 索 ">
498
+ </form>
499
+ </div>
500
+
501
+
502
+ <script src="http://www.google.com/jsapi" type="text/javascript"></script>
503
+ <script type="text/javascript">
504
+ google.load('ads.search', '2');
505
+ </script>
506
+ <script src="http://www.google.com/uds/?file=ads&amp;v=2&amp;packages=search" type="text/javascript"></script>
507
+ <script src="//www.google.com/ads/search/module/ads/3.0/b273f4a567f5aef7268776bb014afddebad5d40b/n/search.js"
508
+ type="text/javascript"></script>
509
+ <script>
510
+ var pubid = "pub-5664019590241836";
511
+ var query = '前端实习 招聘';
512
+
513
+ rnd.today = new Date();
514
+ rnd.seed = rnd.today.getTime();
515
+ function rnd() {
516
+ rnd.seed = (rnd.seed * 9301 + 49297) % 233280;
517
+ return rnd.seed / (233280.0);
518
+ }
519
+ function rand(number) {
520
+ return Math.ceil(rnd() * number);
521
+ }
522
+ var rndid = rand(2);
523
+
524
+ var pageOptions = {
525
+ 'pubId': pubid,
526
+ 'query': query,
527
+ 'rolloverAdBackgroundColor': rndid == 2 ? '#F1FFDC' : '#FFFFFF'
528
+ }
529
+
530
+ var adblock1 = {
531
+ 'container': 'google_guanggao',
532
+ 'format': 'wide',
533
+ 'number': 3,
534
+ 'lines': 2,
535
+ 'hl': 'zh-CN',
536
+ 'channel': rndid == 2 ? '0042640440' : '6861675638',
537
+ 'colorDomainLink': '#008000',
538
+ 'linkTarget': '_blank',
539
+ 'fontFamily': '宋体',
540
+ 'fontSizeTitle': '16px',
541
+ 'fontSizeDescription': '13px',
542
+ 'fontSizeDomainLink': '13px',
543
+ 'colorBackground': '#FFF'
544
+ };
545
+
546
+ var adblock2 = {
547
+ 'container': 'google_guanggao2',
548
+ 'format': 'wide',
549
+ 'number': 4,
550
+ 'lines': 2,
551
+ 'hl': 'zh-CN',
552
+ 'channel': '6861675638',
553
+ 'colorDomainLink': '#008000',
554
+ 'linkTarget': '_blank',
555
+ 'fontFamily': '宋体',
556
+ 'fontSizeTitle': '16px',
557
+ 'fontSizeDescription': '13px',
558
+ 'fontSizeDomainLink': '13px',
559
+ 'colorBackground': '#FFF'
560
+ };
561
+
562
+ var adblock3 = {
563
+ 'container': 'google_guanggao_right',
564
+ 'format': 'narrow',
565
+ 'number': 6,
566
+ 'lines': 3,
567
+ 'hl': 'zh-CN',
568
+ 'channel': '6861675638',
569
+ 'colorDomainLink': '#008000',
570
+ 'linkTarget': '_blank',
571
+ 'fontFamily': '宋体',
572
+ 'fontSizeTitle': '16px',
573
+ 'fontSizeDescription': '13px',
574
+ 'fontSizeDomainLink': '13px',
575
+ 'colorBackground': '#FFF'
576
+ };
577
+ new google.ads.search.Ads(pageOptions, adblock1, adblock2, adblock3);
578
+ </script>
579
+
580
+
581
+ <div id="footer">
582
+ ©
583
+ <script>var yjs_now = new Date();
584
+ document.write(yjs_now.getFullYear())</script>
585
+ 2013 YingJieSheng.COM
586
+ <div style="display:none">耗时:0.023秒</div>
587
+ <div style="display:none">free2:477M max:3072M total:3072M</div>
588
+ <script type="text/javascript">
589
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
590
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
591
+ </script>
592
+ <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
593
+ <script type="text/javascript">
594
+ var pageTracker = _gat._getTracker("UA-2434975-6");
595
+ pageTracker._initData();
596
+ pageTracker._trackPageview();
597
+ </script>
598
+ <span style="display:none;"><script language="javascript"
599
+ src="http://count27.51yes.com/click.aspx?id=276969883&amp;logo=5"></script><a
600
+ href="http://countt.51yes.com/index.aspx?id=276969883" target="_blank"><img width="20" height="20" border="0"
601
+ hspace="0" vspace="0"
602
+ src="http://count27.51yes.com/count5.gif"
603
+ alt="51YES网站统计系统"></a><iframe
604
+ marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"
605
+ src="http://count27.51yes.com/sa.htm?id=276969883&amp;refe=&amp;location=http%3A//s.yingjiesheng.com/result.jsp%3Fkeyword%3D%25E5%2589%258D%25E7%25AB%25AF%25E5%25AE%259E%25E4%25B9%25A0%26city%3D0%26jobtype%3D0%26do%3D1%26stype%3D0&amp;color=24x&amp;resolution=1280x1024&amp;returning=0&amp;language=undefined&amp;ua=Mozilla/5.0%20%28X11%3B%20Linux%20x86_64%29%20AppleWebKit/537.36%20%28KHTML%2C%20like%20Gecko%29%20Chrome/28.0.1500.95%20Safari/537.36"
606
+ height="0" width="0"></iframe>
607
+ <script language="javascript" src="http://count15.51yes.com/click.aspx?id=156561790&amp;logo=5"></script><a
608
+ href="http://countt.51yes.com/index.aspx?id=156561790" target="_blank"><img width="20" height="20" border="0"
609
+ hspace="0" vspace="0"
610
+ src="http://count15.51yes.com/count5.gif"
611
+ alt="51YES网站统计系统"></a><iframe
612
+ marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"
613
+ src="http://count15.51yes.com/sa.htm?id=156561790&amp;refe=&amp;location=http%3A//s.yingjiesheng.com/result.jsp%3Fkeyword%3D%25E5%2589%258D%25E7%25AB%25AF%25E5%25AE%259E%25E4%25B9%25A0%26city%3D0%26jobtype%3D0%26do%3D1%26stype%3D0&amp;color=24x&amp;resolution=1280x1024&amp;returning=0&amp;language=undefined&amp;ua=Mozilla/5.0%20%28X11%3B%20Linux%20x86_64%29%20AppleWebKit/537.36%20%28KHTML%2C%20like%20Gecko%29%20Chrome/28.0.1500.95%20Safari/537.36"
614
+ height="0" width="0"></iframe>
615
+ </span>
616
+ </div>
617
+ </div>
618
+ </body>
619
+ </html>
@@ -0,0 +1,13 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # Require this file using `require "spec_helper"` to ensure that it is only
4
+ # loaded once.
5
+ #
6
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
+ Bundler.require
8
+ require 'active_support'
9
+ require File.expand_path('../../lib/roro_crawler', __FILE__)
10
+ RSpec.configure do |config|
11
+ config.before :all do
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: roro_crawler
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - roro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ description: ''
28
+ email:
29
+ - roro@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - lib/roro_crawler/crawler_handler.rb
35
+ - lib/roro_crawler/version.rb
36
+ - lib/roro_crawler/crawler_class.rb
37
+ - lib/roro_crawler.rb
38
+ - lib/tasks/crawler_tasks.rake
39
+ - MIT-LICENSE
40
+ - Rakefile
41
+ - README.rdoc
42
+ - spec/fixtures/intr.html
43
+ - spec/fixtures/list.html
44
+ - spec/spec_helper.rb
45
+ - spec/crawler_handler_spec.rb
46
+ - spec/crawler_class_spec.rb
47
+ homepage: ''
48
+ licenses: []
49
+ metadata: {}
50
+ post_install_message:
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubyforge_project:
66
+ rubygems_version: 2.0.7
67
+ signing_key:
68
+ specification_version: 4
69
+ summary: ''
70
+ test_files:
71
+ - spec/fixtures/intr.html
72
+ - spec/fixtures/list.html
73
+ - spec/spec_helper.rb
74
+ - spec/crawler_handler_spec.rb
75
+ - spec/crawler_class_spec.rb