Mobile 375 × 812

Desktop 1440 × 900

Score: 64 / 100
Based on 8 categories, 0 sections
Decent speed, but optimizing further could improve engagement.
Several missing protections leave your users and data exposed.
Major barriers for users with disabilities — up to 15% of your audience.
Well-optimized for search — your content is discoverable.
Good server performance with room for optimization.
Mostly compliant — a few items need attention.
Missing metadata means poor previews on social media and search.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
Cookie '_c_i_p' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie 'acw_tc' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
Cookie 'uid' is missing the Secure flag
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
High impact, low effort — start here.
High impact, requires investment.
Nothing in this quadrant — good news.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/38ec209b-b95e-4956-a4e3-cb2330575a4d)<a href="https://beavercheck.com/results/38ec209b-b95e-4956-a4e3-cb2330575a4d"><img src="https://beavercheck.com/badge?url=https%3A%2F%2F51job.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2F51job.comThis badge auto-updates with your latest scan result.
Your site has several issues that may be affecting user experience and business outcomes. The 5 security gaps leave your users exposed — modern browsers increasingly warn visitors about insecure sites. Addressing the critical issues below would have the most immediate impact on your user trust.
10 barrier(s) likely increasing bounce by ~31%.
Page takes 24.9s to load
+12% bounceUsers abandon at ~3s — you're 22.4s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 656ms
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
1 form field(s) without a label
+2% bounceScreen readers skip unlabeled fields; autofill can't identify them; checkout abandonment spikes
Fix: Associate every input with a visible <label for="…">; add autocomplete attributes
Viewport disables user zoom
+2% bounceVisitors with low vision can't read the page — and some jurisdictions treat this as a legal risk
Fix: Remove user-scalable=no; drop maximum-scale if it's below 2
No Open Graph tags
+2% bounceLinks shared on LinkedIn / Slack / Facebook show bare URLs — referral clicks drop
Fix: Add og:title, og:description, og:image, og:url to the page head
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
5 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
¥875 investment → ¥15/month returns + CNY 50,000,000 risk avoided
¥875
2h · 5 findings
¥15 /mo
~¥177 / year
CNY 50,000,000
if kept compliant
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
2.5 developer hours at ¥350/hr
Based on China rates (¥350/hr)
Start here for the best return on investment
¥4,166,681 / month at risk
~¥50,000,177 / year if left unfixed
¥50,000,000
+2 more
¥15 /mo
25766.7 MB/mo × 0.571 CNY/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
6.30 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
24.93 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
656 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
10.19 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
26.36 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Slide 4 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/04/03/69cf339439d5f01db3b54b... | 472.8 KiB | 386.4 KiB |
Slide 3 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/04/16/69e04cde5557b17e833b6f... | 448.6 KiB | 362.2 KiB |
Slide 8 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/01/08/695f146ff34bc1145614e8... | 399.1 KiB | 312.7 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e73b9b4dc41c3233e57b... | 278.2 KiB | 244.7 KiB |
Slide 7 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/09/69ae65e7babb827f24f3f5... | 317.7 KiB | 231.2 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce01a855b5326490cc... | 258.8 KiB | 225.3 KiB |
Slide 2 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/16/69b7b33c6e044627182bf2... | 293.4 KiB | 207.0 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/20/69bd1924f3d8e2298cbbc5... | 235.0 KiB | 201.4 KiB |
Slide 5 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/16/69b79fa37148d05d458328... | 284.1 KiB | 197.7 KiB |
Slide 6 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/16/69b7736c6c4c40630936c2... | 284.1 KiB | 197.7 KiB |
Slide 1 div.carousel-container > div#carousel > div.slide > img | /traffic-ad-launch/dawn/2026/03/20/69bd04c26ce46225888ef7... | 272.1 KiB | 185.7 KiB |
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img | fecdn.51jobcdn.com/fe/static/51job/2025/04/22/68078a4d/51job-activity-entry.png | 247.4 KiB | 176.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e7489c5fe7163b6cb11a... | 207.1 KiB | 173.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e74458e71ee13b50e79d... | 191.2 KiB | 169.0 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e083ef5557b16ee93c38... | 186.3 KiB | 164.1 KiB |
广告 div.banner-container > div.banner-left > div.banner-left-bottom > a.banner-left-bottom-right | /traffic-ad-launch/dawn/2026/04/15/69df4e211a1aa99ba907f7... | 165.7 KiB | 140.2 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69defb2ac67438422bf298... | 140.9 KiB | 118.7 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5eede79f5582ebb7386... | 133.9 KiB | 100.3 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5e54070c11e8337989b... | 131.6 KiB | 98.1 KiB |
div.qrcode > div.qr > div.codeImg > img div.qrcode > div.qr > div.codeImg > img | fecdn.51jobcdn.com/fe/static/51job/home/qrcode_wxmini.jpg | 103.5 KiB | 97.3 KiB |
广告 div.banner-container > div.banner-left > div.banner-left-bottom > a.banner-left-bottom-left | /traffic-ad-launch/dawn/2026/02/28/69a287f55f3b514a33136f... | 119.1 KiB | 93.6 KiB |
div.app-main > div.banner-and-func > div.banner-container > a.banner-right div.app-main > div.banner-and-func > div.banner-container > a.banner-right | /cdn/51job/FileService/FileUpload/image/20250513/haozhi_b... | 148.4 KiB | 78.1 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/10/9698/9697351/469090300018564228849_3... | 75.8 KiB | 75.2 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/09/69d7067b71ab94fbc81bd9... | 92.0 KiB | 69.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69df316e1a1aa92886078a... | 83.6 KiB | 61.4 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/1/668/667731/68411637672705156274_300.p... | 59.2 KiB | 58.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce245fe71677caacc3... | 62.0 KiB | 39.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce2979f55887ca730f... | 60.1 KiB | 37.8 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/8/7226/7225530/259109198487742392835_30... | 38.0 KiB | 37.3 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e716c970c11e11509bbe... | 67.0 KiB | 33.4 KiB |
微信服务号 div.code-item > div.code > div.code-image-border > img | fecdn.51jobcdn.com/fe/51job-comp/images/pc_rightnav_wxmp.png | 31.0 KiB | 27.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/14/69ddd5761a1aa9ab2803f3... | 49.7 KiB | 27.5 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/10/9828/9827158/551205841784802028203_3... | 26.8 KiB | 26.1 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/1/210/209609/75175317008384436571_300.p... | 26.5 KiB | 25.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /cdn/51job/FileService/FileUpload/image/20250513/haozhi_b... | 24.7 KiB | 21.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e0ae1c7ca2631ba8ad07... | 42.8 KiB | 20.6 KiB |
APP下载 div.code-item > div.code > div.code-image-border > img | fecdn.51jobcdn.com/fe/51job-comp/images/pc_er_right_app.png | 21.8 KiB | 18.6 KiB |
div.item > div.header > div.left > img div.item > div.header > div.left > img | fecdn.51jobcdn.com/fe/static/51job/home/Hot@3x.png | 20.6 KiB | 18.1 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/1/532/531501/4033731505829101655_300.pn... | 18.0 KiB | 17.3 KiB |
用微信扫一扫
打开通知获得更多求职资讯 div.qrcode-content > div.sidebar > div.qrcode > div.qr | fecdn.51jobcdn.com/fe/static/51job/home/greenbg@3x.png | 59.7 KiB | 12.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/23/69c0a8676ce4626d39959e... | 45.7 KiB | 12.4 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/baselogo/1/148/147105/27e7a9da6d8173f14... | 12.8 KiB | 12.2 KiB |
div.item > div.header > div.left > img div.item > div.header > div.left > img | fecdn.51jobcdn.com/fe/static/51job/home/star@3x.png | 14.1 KiB | 11.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /cdn/51job/FileService/FileUpload/image/20250513/vip_bann... | 14.5 KiB | 11.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /cdn/51job/FileService/FileUpload/image/20250513/wechat_b... | 13.1 KiB | 10.3 KiB |
div.app-footer > div.footer-record > div.middle > img div.app-footer > div.footer-record > div.middle > img | fecdn.51jobcdn.com/fe/static/51job/home/image@3x.png | 7.5 KiB | 7.3 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/baselogo/4/3641/3640357/28c442489695943... | 7.1 KiB | 6.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5b543f5b77963684510... | 24.0 KiB | 6.5 KiB |
div.banner-and-func > div.login-card > div.card-header > img.title div.banner-and-func > div.login-card > div.card-header > img.title | fecdn.51jobcdn.com/fe/static/51job/home/login_card_title.png | 7.5 KiB | 5.2 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /im/mkt/app/51job_phone/app/homelogo/home_logo_default.pn... | 5.7 KiB | 5.0 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/8/7633/7632111/143575136878781147637_30... | 4.7 KiB | 4.5 KiB |
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| js.51jobcdn.com/jbs-www/public/js/51job-corejs-493d6984.js | 2.0 KiB | 1.2 s |
| js.51jobcdn.com/jbs-www/www/www-vendorb-CxRzgd7T.css | 52.7 KiB | 2.6 s |
| js.51jobcdn.com/jbs-www/www/www-BkZKj7I4.css | 16.6 KiB | 1.6 s |
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| static.geetest.com/static/js/fullpage.9.2.0-guwyxh.js | 86400.0 s | 82.3 KiB |
| static.geetest.com/static/wind/style_https.1.5.8.css | 86400.0 s | 5.0 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| js.51jobcdn.com/jbs-www/www/www-vendorb-CxRzgd7T.css | 52.3 KiB | 50.5 KiB |
| js.51jobcdn.com/jbs-www/www/www-BkZKj7I4.css | 16.2 KiB | 10.5 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| js.51jobcdn.com/jbs-www/www/www-vendora-BG0et7wY.js | 270.4 KiB | 148.2 KiB |
| static.geetest.com/static/js/fullpage.9.2.0-guwyxh.js | 81.9 KiB | 34.7 KiB |
| js.51jobcdn.com/jbs-www/www/www-vendorb-Cn6tg01X.js | 60.6 KiB | 27.2 KiB |
| js.51jobcdn.com/jbs-www/www/www-DvUFYMCk.js | 54.9 KiB | 25.5 KiB |
| js.51jobcdn.com/jbs-www/www/polyfills-XmayYu8g.js | 47.7 KiB | 22.2 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| js.51jobcdn.com/jbs-www/www/www-vendora-BG0et7wY.js | 2.0 s | 1.5 s | 3.9 ms |
| Unattributable | 753 ms | 12 ms | 0.0 ms |
| 51job.com/ | 554 ms | 55 ms | 19 ms |
| static.geetest.com/static/js/fullpage.9.2.0-guwyxh.js | 88 ms | 68 ms | 20 ms |
| hm.baidu.com/hm.js?1370a11171bd6f2d9b1fe98951541941 | 79 ms | 64 ms | 2.5 ms |
| js.51jobcdn.com/jbs-www/www/www-DvUFYMCk.js | 67 ms | 65 ms | 0.7 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.8 s |
| Other | 1.0 s |
| Style & Layout | 492 ms |
| Rendering | 143 ms |
| Script Parsing & Compilation | 51 ms |
| Parse HTML & CSS | 51 ms |
| Garbage Collection | 31 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img | fecdn.51jobcdn.com/fe/static/51job/2025/04/22/68078a4d/51job-activity-entry.png |
div.search-bar-container > div.logo-container > a > img.logo div.search-bar-container > div.logo-container > a > img.logo | fecdn.51jobcdn.com/fe/static/51job/header/logo@3x.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.banner-left > div.carousel-container > div.arrowNone > button#prev-btn div.banner-left > div.carousel-container > div.arrowNone > button#prev-btn |
div.banner-left > div.carousel-container > div.arrowNone > button#next-btn div.banner-left > div.carousel-container > div.arrowNone > button#next-btn |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.banner-and-func > div.login-card > div.card-header > img.title div.banner-and-func > div.login-card > div.card-header > img.title |
div.login-card > div.card-header > div.login-type > img div.login-card > div.card-header > div.login-type > img |
div.login-form > div.phone-login-form > div.login-explain > img div.login-form > div.phone-login-form > div.login-explain > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img |
div.sidebar > div.qrcode > div.qr > img.close div.sidebar > div.qrcode > div.qr > img.close |
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.el-select__wrapper > div.el-select__selection > div.el-select__selected-item > input#el-id-3343801-203 div.el-select__wrapper > div.el-select__selection > div.el-select__selected-item > input#el-id-3343801-203 |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.search-bar-wrap > div.search-bar-container > div.logo-container > a div.search-bar-wrap > div.search-bar-container > div.logo-container > a |
div.app-main > div.banner-and-func > div.banner-container > a.banner-right div.app-main > div.banner-and-func > div.banner-container > a.banner-right |
body > div#app-activityEntry > div.activity-entry > a body > div#app-activityEntry > div.activity-entry > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1.8-3.6万·13薪 div.card > a > div.top > div.salary |
5-10年 div.card > a > div.middle > div.tag |
pms div.card > a > div.middle > div.tag |
2-2.5万·13薪 div.card > a > div.top > div.salary |
5年及以上 div.card > a > div.middle > div.tag |
javascript div.card > a > div.middle > div.tag |
vue div.card > a > div.middle > div.tag |
4-5千 div.card > a > div.top > div.salary |
2年及以上 div.card > a > div.middle > div.tag |
2-3万 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
1.3-1.8万·13薪 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
50-60万/年 div.card > a > div.top > div.salary |
8年及以上 div.card > a > div.middle > div.tag |
1.5-3万·15薪 div.card > a > div.top > div.salary |
5年及以上 div.card > a > div.middle > div.tag |
8千-1万 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
5千-1万 div.card > a > div.top > div.salary |
1年及以上 div.card > a > div.middle > div.tag |
1.5-3万 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
30-50万/年 div.card > a > div.top > div.salary |
18-30万/年 div.card > a > div.top > div.salary |
2年及以上 div.card > a > div.middle > div.tag |
These are opportunities to improve the legibility of your content.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
These items highlight common accessibility best practices.
Image display dimensions should match natural aspect ratio. Learn more about image aspect ratio.
Performance issues directly impact user engagement and conversion rates.
| URL | Aspect Ratio (Displayed) | Aspect Ratio (Actual) | |
|---|---|---|---|
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e7489c5fe7163b6cb11a... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5b543f5b77963684510... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/23/69c0a8676ce4626d39959e... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e716c970c11e11509bbe... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce01a855b5326490cc... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e73b9b4dc41c3233e57b... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5e54070c11e8337989b... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/20/69bd1924f3d8e2298cbbc5... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5eede79f5582ebb7386... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e74458e71ee13b50e79d... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce2979f55887ca730f... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce245fe71677caacc3... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69defb2ac67438422bf298... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e0ae1c7ca2631ba8ad07... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e083ef5557b16ee93c38... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69df316e1a1aa92886078a... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/14/69ddd5761a1aa9ab2803f3... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/09/69d7067b71ab94fbc81bd9... | 378 x 118 (3.20) | 768 x 248 (3.10) |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
添加求职意向,职位推荐更精准 div.zone-wrapper > div.head > div > a.addIntention |
小程序 div#app-qrcode > div.qrcode-content > div.sidebar > a.sidebar-item |
APP下载 div#app-qrcode > div.qrcode-content > div.sidebar > a.sidebar-item |
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 2 | <!DOCTYPE html> | Syntax not understood |
| 3 | <html> | Syntax not understood |
| 4 | <head> | Syntax not understood |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | Syntax not understood |
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=gbk"> | Syntax not understood |
| 7 | <link rel="icon" href="https://img04.51jobcdn.com/im/mkt/pc/favicon/favicon_51.ico?20221122" type="image/x-icon"/> | Unknown directive |
| 8 | <link rel="apple-touch-icon-precomposed" href="https://img04.51jobcdn.com/im/m/logo_h5@3x.jpg"> | Unknown directive |
| 9 | <title>招聘网_人才网_找工作_求职_上前程无忧 | 51job 找不到该页</title> | Syntax not understood |
| 10 | <meta name="description" content="前程无忧为企业提供人才招聘、猎头、培训、测评和人事外包在内的全方位的人力资源服务,帮助个人求职者与企业搭建人才招募和人才培养渠道"> | Syntax not understood |
| 11 | <meta name="keywords" content="人才,招聘,简历,工作,面试,薪酬,跳槽,猎头,培训,测评,人事"> | Syntax not understood |
| 12 | <meta name="robots" content="all"> | Syntax not understood |
| 13 | <meta http-equiv="Expires" content="0"> | Syntax not understood |
| 14 | <meta http-equiv="Cache-Control" content="no-cache"> | Syntax not understood |
| 15 | <meta http-equiv="Pragma" content="no-cache"> | Syntax not understood |
| 16 | <link href="//js.51jobcdn.com/in/css/style.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 17 | <link href="//js.51jobcdn.com/in/css/career.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 18 | <link href="//js.51jobcdn.com/in/css/logo.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 19 | <link href="//js.51jobcdn.com/in/css/2017/public/base.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 20 | <link href="//js.51jobcdn.com/in/css/2017/public/panel-pop.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 21 | <link href="//js.51jobcdn.com/in/css/2017/public/form.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 22 | <script language="javascript"> | Syntax not understood |
| 23 | var _tkd = _tkd || []; //点击量统计用 | Syntax not understood |
| 24 | var lang = []; | Syntax not understood |
| 25 | var supporthttps = 1; //浏览器是否支持https | Syntax not understood |
| 26 | var currenthttps = (window.location.protocol === 'https:') ? '1' : '0'; //当前是否为https | Unknown directive |
| 27 | var systemtime = 1748254761674; | Syntax not understood |
| 28 | var d_system_client_time = systemtime - new Date().getTime(); | Syntax not understood |
| 29 | var trackConfig = { | Syntax not understood |
| 30 | 'version': '', | Unknown directive |
| 31 | 'guid': '69d9801bb4404e770fdfd3be6fe4af35', | Unknown directive |
| 32 | 'ip': '116.246.3.99', | Unknown directive |
| 33 | 'accountid': '', | Unknown directive |
| 34 | 'refpage': '', | Unknown directive |
| 35 | 'refdomain': '', | Unknown directive |
| 36 | 'domain': 'www.51job.com', | Unknown directive |
| 37 | 'pageName': 'missing.php', | Unknown directive |
| 38 | 'partner': '', | Unknown directive |
| 39 | 'islanding': '0', | Unknown directive |
| 40 | 'fromdomain': '51job_web', | Unknown directive |
| 41 | 'to': '', | Unknown directive |
| 42 | 'createDate': '', | Unknown directive |
| 43 | 'identityType': '', | Unknown directive |
| 44 | 'sensor_url':'//scdata.51job.com/sa?project=production' | Unknown directive |
| 45 | }; | Syntax not understood |
| 46 | if (window.localStorage instanceof Object) | Syntax not understood |
| 47 | { | Syntax not understood |
| 48 | } | Syntax not understood |
| 49 | window.cfg = { | Syntax not understood |
| 50 | lang:'c', | Unknown directive |
| 51 | domain : { | Unknown directive |
| 52 | my : 'http://my.51job.com', | Unknown directive |
| 53 | login : 'https://login.51job.com', | Unknown directive |
| 54 | search : 'https://search.51job.com', | Unknown directive |
| 55 | www : '//www.51job.com', | Unknown directive |
| 56 | jobs : 'https://jobs.51job.com', | Unknown directive |
| 57 | jianli : 'https://jianli.51job.com', | Unknown directive |
| 58 | company : '//company.51job.com', | Unknown directive |
| 59 | i : '//i.51job.com', | Unknown directive |
| 60 | jc : 'https://jc.51job.com', | Unknown directive |
| 61 | map : 'https://map.51job.com', | Unknown directive |
| 62 | m : 'https://m.51job.com', | Unknown directive |
| 63 | cdn : '//js.51jobcdn.com', | Unknown directive |
| 64 | help : 'https://help.51job.com', | Unknown directive |
| 65 | img : '//img02.51jobcdn.com', | Unknown directive |
| 66 | dj : '//it.51job.com', | Unknown directive |
| 67 | mdj : '//mit.51job.com', | Unknown directive |
| 68 | mq : '//mq.51job.com', | Unknown directive |
| 69 | mmq : '//mmq.51job.com', | Unknown directive |
| 70 | kbc : 'https://blanchard.51job.com', | Unknown directive |
| 71 | mtr : 'https://medu.51job.com', | Unknown directive |
| 72 | tr : 'https://edu.51job.com', | Unknown directive |
| 73 | train : '//tr.51job.com', | Unknown directive |
| 74 | shixi : '//shixi.51job.com', | Unknown directive |
| 75 | mwenku : 'https://mwenku.51job.com', | Unknown directive |
| 76 | mqiuzhixin : 'http://m.qiuzhixin.51job.com', | Unknown directive |
| 77 | } | Syntax not understood |
| 78 | }; | Syntax not understood |
| 80 | </script> | Syntax not understood |
| 81 | <script type="text/javascript" src="//js.51jobcdn.com/in/js/2016/pointtrack.js?20211019"></script> | Syntax not understood |
| 82 | <script> | Syntax not understood |
| 83 | var _hmt = _hmt || []; | Syntax not understood |
| 84 | (function() { | Syntax not understood |
| 85 | var hm = document.createElement("script"); | Syntax not understood |
| 86 | hm.src = "https://hm.baidu.com/hm.js?1370a11171bd6f2d9b1fe98951541941";//百度统计代码 | Unknown directive |
| 87 | var s = document.getElementsByTagName("script")[0]; | Syntax not understood |
| 88 | s.parentNode.insertBefore(hm, s); | Syntax not understood |
| 89 | })(); | Syntax not understood |
| 90 | </script> | Syntax not understood |
| 92 | <script language="javascript" src="//js.51jobcdn.com/in/js/2016/jquery.js?20230105"></script> | Syntax not understood |
| 93 | <script language="javascript" src="//js.51jobcdn.com/in/js/sensorsdata/sensorsdata.min.js?20230105"></script> | Syntax not understood |
| 94 | <script language="javascript" src="//js.51jobcdn.com/in/js/sensorsdata/sensors_gbk_seo.js?20230105"></script> | Syntax not understood |
| 95 | <script language="javascript" src="//js.51jobcdn.com/in/js/sensorsdata/sensorsini.js?20230105"></script> | Syntax not understood |
| 96 | </head> | Syntax not understood |
| 97 | <body> | Syntax not understood |
| 98 | <div class="header"> | Syntax not understood |
| 99 | <!-- bar start --> | Syntax not understood |
| 100 | <div class="bar"> | Syntax not understood |
| 101 | <div class="in"> | Syntax not understood |
| 102 | <div class="language"> | Syntax not understood |
| 103 | <ul id="languagelist"> | Syntax not understood |
| 104 | <li class="tle"><span class="list">简</span></li> | Syntax not understood |
| 105 | <li class="last"> | Syntax not understood |
| 106 | <a href="//www.51job.com/default-e.php" rel="external nofollow">EN</a></li> | Syntax not understood |
| 107 | </ul> | Syntax not understood |
| 108 | </div> | Syntax not understood |
| 109 | <div class="uer"> | Syntax not understood |
| 110 | <p class="op"> | Syntax not understood |
| 111 | <a data-sensor-id="sensor_home_rightTopLogin" href="https://login.51job.com/login.php?lang=&url=http%3A%2F%2Fwww.51job.com%2Fin%2Fmissing.php&qrlogin=2" rel="external nofollow">登录</a> / | Unknown directive |
| 112 | <a data-sensor-id="sensor_home_rightTopRegister"v href="https://login.51job.com/register.php?lang=&url=http%3A%2F%2Fwww.51job.com%2Fin%2Fmissing.php&qrlogin=2" rel="external nofollow">注册</a> | Unknown directive |
| 113 | </p> | Syntax not understood |
| 115 | </div> | Syntax not understood |
| 117 | <div class="appNew"> | Syntax not understood |
| 118 | <ul> | Syntax not understood |
| 119 | <li> | Syntax not understood |
| 120 | <em class="e_icon"></em><a href="http://app.51job.com/index.html">APP下载</a> | Unknown directive |
| 121 | </li> | Syntax not understood |
| 122 | <li> | Syntax not understood |
| 123 | <img width="80" height="80" src="//img05.51jobcdn.com/im/2022/logo/pc_topnav_app.png" alt="app download"> | Syntax not understood |
| 124 | <p> | Syntax not understood |
| 125 | <a href="http://app.51job.com/index.html">APP下载</a> | Unknown directive |
| 126 | </p> | Syntax not understood |
| 127 | </li> | Syntax not understood |
| 128 | </ul> | Syntax not understood |
| 129 | </div> | Syntax not understood |
| 130 | <p class="rlk"> | Syntax not understood |
| 131 | <a href="//baike.51job.com" target="_blank">职场百科</a> | Syntax not understood |
| 132 | <span class="lb"> </span> | Syntax not understood |
| 133 | <a href="//wenku.51job.com" target="_blank">职场文库</a> | Syntax not understood |
| 134 | <span class="lb"> </span> | Syntax not understood |
| 135 | <a href="https://jobs.51job.com" target="_blank">招聘信息</a> | Unknown directive |
| 136 | <span class="lb"> </span> | Syntax not understood |
| 137 | <a href="https://ehire.51job.com" target="_blank">我要招聘</a> | Unknown directive |
| 138 | <span class="lb"> </span> | Syntax not understood |
| 139 | </p> | Syntax not understood |
| 140 | </div> | Syntax not understood |
| 141 | <input type="hidden" id="welname" name="welname" value="欢迎您"> | Syntax not understood |
| 142 | </div> | Syntax not understood |
| 143 | <!-- top end --> | Syntax not understood |
| 144 | <!-- 英文版为body添加class --> | Syntax not understood |
| 145 | <script> | Syntax not understood |
| 146 | </script> | Syntax not understood |
| 147 | <!-- nag start --> | Syntax not understood |
| 148 | <div class="pop-city" style="display:none;position: absolute; z-index: 1000;" id="area_channel_layer"> | Unknown directive |
| 149 | <div class="tle"> | Syntax not understood |
| 150 | 地区选择 <em class="close" onclick="jvascript:$('#area_channel_layer,#area_channel_layer_backdrop').hide();"></em> | Unknown directive |
| 151 | </div> | Syntax not understood |
| 152 | <div class="pcon"> | Syntax not understood |
| 153 | <div class="ht"> | Syntax not understood |
| 154 | <label>热门城市</label> | Syntax not understood |
| 155 | <a href="//www.51job.com/beijing/">北京</a> | Syntax not understood |
| 156 | <a href="//www.51job.com/shanghai/">上海</a> | Syntax not understood |
| 157 | <a href="//www.51job.com/guangzhou/">广州</a> | Syntax not understood |
| 158 | <a href="//www.51job.com/shenzhen/">深圳</a> | Syntax not understood |
| 159 | <a href="//www.51job.com/wuhan/">武汉</a> | Syntax not understood |
| 160 | <a href="//www.51job.com/xian/">西安</a> | Syntax not understood |
| 161 | <a href="//www.51job.com/hangzhou/">杭州</a> | Syntax not understood |
| 162 | <a href="//www.51job.com/nanjing/">南京</a> | Syntax not understood |
| 163 | <a href="//www.51job.com/chengdu/">成都</a> | Syntax not understood |
| 164 | <a href="//www.51job.com/chongqing/">重庆</a> | Syntax not understood |
| 165 | </div> | Syntax not understood |
| 166 | <div class="cbox"> | Syntax not understood |
| 167 | <ul id="area_channel_layer_list"> | Syntax not understood |
| 168 | <li class="on" onclick="areaChannelChangeTab('abc', this)">A B C</li> | Syntax not understood |
| 169 | <li onclick="areaChannelChangeTab('def', this)">D E F</li> | Syntax not understood |
| 170 | <li onclick="areaChannelChangeTab('gh', this)">G H</li> | Syntax not understood |
| 171 | <li onclick="areaChannelChangeTab('jkl', this)">J K L</li> | Syntax not understood |
| 172 | <li onclick="areaChannelChangeTab('mnp', this)">M N P</li> | Syntax not understood |
| 173 | <li onclick="areaChannelChangeTab('qrs', this)">Q R S</li> | Syntax not understood |
| 174 | <li onclick="areaChannelChangeTab('twx', this)">T W X</li> | Syntax not understood |
| 175 | <li onclick="areaChannelChangeTab('yz', this)">Y Z</li> | Syntax not understood |
| 176 | </ul> | Syntax not understood |
| 177 | <div class="clst" id="area_channel_layer_all"> | Syntax not understood |
| 178 | <div class="e" name="area_channel_div_abc"> | Syntax not understood |
| 179 | <span><a href="//www.51job.com/anshan/">鞍山</a></span> | Syntax not understood |
| 180 | <span><a href="//www.51job.com/anqing/">安庆</a></span> | Syntax not understood |
| 181 | <span><a href="//www.51job.com/anyang/">安阳</a></span> | Syntax not understood |
| 182 | <span><a href="//www.51job.com/beijing/">北京</a></span> | Syntax not understood |
| 183 | <span><a href="//www.51job.com/baotou/">包头</a></span> | Syntax not understood |
| 184 | <span><a href="//www.51job.com/baoding/">保定</a></span> | Syntax not understood |
| 185 | <span><a href="//www.51job.com/bengbu/">蚌埠</a></span> | Syntax not understood |
| 186 | <span><a href="//www.51job.com/baoji/">宝鸡</a></span> | Syntax not understood |
| 187 | <span><a href="//www.51job.com/binzhou/">滨州</a></span> | Syntax not understood |
| 188 | <span><a href="//www.51job.com/changchun/">长春</a></span> | Syntax not understood |
| 189 | <span><a href="//www.51job.com/changsha/">长沙</a></span> | Syntax not understood |
| 190 | <span><a href="//www.51job.com/chengdu/">成都</a></span> | Syntax not understood |
| 191 | <span><a href="//www.51job.com/chongqing/">重庆</a></span> | Syntax not understood |
| 192 | <span><a href="//www.51job.com/changzhou/">常州</a></span> | Syntax not understood |
| 193 | <span><a href="//www.51job.com/changde/">常德</a></span> | Syntax not understood |
| 194 | <span><a href="//www.51job.com/changshu/">常熟</a></span> | Syntax not understood |
| 195 | <span><a href="//www.51job.com/cangzhou/">沧州</a></span> | Syntax not understood |
| 196 | <span><a href="//www.51job.com/chaozhou/">潮州</a></span> | Syntax not understood |
| 197 | <span><a href="//www.51job.com/chenzhou/">郴州</a></span> | Syntax not understood |
| 198 | <span><a href="//www.51job.com/chifeng/">赤峰</a></span> | Syntax not understood |
| 199 | <span><a href="//www.51job.com/chuzhou/">滁州</a></span> | Syntax not understood |
| 200 | <span><a href="//www.51job.com/changzhi/">长治</a></span> | Syntax not understood |
| 201 | </div> | Syntax not understood |
| 202 | <div class="e" name="area_channel_div_def" style="display:none"> | Unknown directive |
| 203 | <span><a href="//www.51job.com/dalian/">大连</a></span> | Syntax not understood |
| 204 | <span><a href="//www.51job.com/dongguan/">东莞</a></span> | Syntax not understood |
| 205 | <span><a href="//www.51job.com/dandong/">丹东</a></span> | Syntax not understood |
| 206 | <span><a href="//www.51job.com/daqing/">大庆</a></span> | Syntax not understood |
| 207 | <span><a href="//www.51job.com/dazhou/">达州</a></span> | Syntax not understood |
| 208 | <span><a href="//www.51job.com/datong/">大同</a></span> | Syntax not understood |
| 209 | <span><a href="//www.51job.com/deyang/">德阳</a></span> | Syntax not understood |
| 210 | <span><a href="//www.51job.com/dezhou/">德州</a></span> | Syntax not understood |
| 211 | <span><a href="//www.51job.com/dongying/">东营</a></span> | Syntax not understood |
| 212 | <span><a href="//www.51job.com/errduosi/">鄂尔多斯</a></span> | Syntax not understood |
| 213 | <span><a href="//www.51job.com/ezhou/">鄂州</a></span> | Syntax not understood |
| 214 | <span><a href="//www.51job.com/fuzhou/">福州</a></span> | Syntax not understood |
| 215 | <span><a href="//www.51job.com/foshan/">佛山</a></span> | Syntax not understood |
| 216 | <span><a href="//www.51job.com/fushun/">抚顺</a></span> | Syntax not understood |
| 217 | <span><a href="//www.51job.com/fuzhoue/">抚州</a></span> | Syntax not understood |
| 218 | <span><a href="//www.51job.com/fuyang/">阜阳</a></span> | Syntax not understood |
| 219 | </div> | Syntax not understood |
| 220 | <div class="e" name="area_channel_div_gh" style="display:none"> | Unknown directive |
| 221 | <span><a href="//www.51job.com/guangzhou/">广州</a></span> | Syntax not understood |
| 222 | <span><a href="//www.51job.com/guiyang/">贵阳</a></span> | Syntax not understood |
| 223 | <span><a href="//www.51job.com/ganzhou/">赣州</a></span> | Syntax not understood |
| 224 | <span><a href="//www.51job.com/guangan/">广安</a></span> | Syntax not understood |
| 225 | <span><a href="//www.51job.com/guangyuan/">广元</a></span> | Syntax not understood |
| 226 | <span><a href="//www.51job.com/guigang/">贵港</a></span> | Syntax not understood |
| 227 | <span><a href="//www.51job.com/guilin/">桂林</a></span> | Syntax not understood |
| 228 | <span><a href="//www.51job.com/harbin/">哈尔滨</a></span> | Syntax not understood |
| 229 | <span><a href="//www.51job.com/hangzhou/">杭州</a></span> | Syntax not understood |
| 230 | <span><a href="//www.51job.com/hefei/">合肥</a></span> | Syntax not understood |
| 231 | <span><a href="//www.51job.com/haikou/">海口</a></span> | Syntax not understood |
| 232 | <span><a href="//www.51job.com/huhhot/">呼和浩特</a></span> | Syntax not understood |
| 233 | <span><a href="//www.51job.com/huizhou/">惠州</a></span> | Syntax not understood |
| 234 | <span><a href="//www.51job.com/hengyang/">衡阳</a></span> | Syntax not understood |
| 235 | <span><a href="//www.51job.com/huaian/">淮安</a></span> | Syntax not understood |
| 236 | <span><a href="//www.51job.com/huzhou/">湖州</a></span> | Syntax not understood |
| 237 | <span><a href="//www.51job.com/handan/">邯郸</a></span> | Syntax not understood |
| 238 | <span><a href="//www.51job.com/hanzhong/">汉中</a></span> | Syntax not understood |
| 239 | <span><a href="//www.51job.com/heyuan/">河源</a></span> | Syntax not understood |
| 240 | <span><a href="//www.51job.com/heze/">菏泽</a></span> | Syntax not understood |
| 241 | <span><a href="//www.51job.com/hengshui/">衡水</a></span> | Syntax not understood |
| 242 | <span><a href="//www.51job.com/huaihua/">怀化</a></span> | Syntax not understood |
| 243 | <span><a href="//www.51job.com/huaibei/">淮北</a></span> | Syntax not understood |
| 244 | <span><a href="//www.51job.com/huainan/">淮南</a></span> | Syntax not understood |
| 245 | <span><a href="//www.51job.com/huanggang/">黄冈</a></span> | Syntax not understood |
| 246 | <span><a href="//www.51job.com/huangshi/">黄石</a></span> | Syntax not understood |
| 247 | </div> | Syntax not understood |
| 248 | <div class="e" name="area_channel_div_jkl" style="display:none"> | Unknown directive |
| 249 | <span><a href="//www.51job.com/jinan/">济南</a></span> | Syntax not understood |
| 250 | <span><a href="//www.51job.com/jiaxing/">嘉兴</a></span> | Syntax not understood |
| 251 | <span><a href="//www.51job.com/jinhua/">金华</a></span> | Syntax not understood |
| 252 | <span><a href="//www.51job.com/jilin/">吉林</a></span> | Syntax not understood |
| 253 | <span><a href="//www.51job.com/jiangmen/">江门</a></span> | Syntax not understood |
| 254 | <span><a href="//www.51job.com/jingzhou/">荆州</a></span> | Syntax not understood |
| 255 | <span><a href="//www.51job.com/jining/">济宁</a></span> | Syntax not understood |
| 256 | <span><a href="//www.51job.com/jiujiang/">九江</a></span> | Syntax not understood |
| 257 | <span><a href="//www.51job.com/jian/">吉安</a></span> | Syntax not understood |
| 258 | <span><a href="//www.51job.com/jiaozuo/">焦作</a></span> | Syntax not understood |
| 259 | <span><a href="//www.51job.com/jieyang/">揭阳</a></span> | Syntax not understood |
| 260 | <span><a href="//www.51job.com/jinzhou/">锦州</a></span> | Syntax not understood |
| 261 | <span><a href="//www.51job.com/jinzhong/">晋中</a></span> | Syntax not understood |
| 262 | <span><a href="//www.51job.com/jingmen/">荆门</a></span> | Syntax not understood |
| 263 | <span><a href="//www.51job.com/kunming/">昆明</a></span> | Syntax not understood |
| 264 | <span><a href="//www.51job.com/kunshan/">昆山</a></span> | Syntax not understood |
| 265 | <span><a href="//www.51job.com/kaifeng/">开封</a></span> | Syntax not understood |
| 266 | <span><a href="//www.51job.com/lhasa/">拉萨</a></span> | Syntax not understood |
| 267 | <span><a href="//www.51job.com/lanzhou/">兰州</a></span> | Syntax not understood |
| 268 | <span><a href="//www.51job.com/langfang/">廊坊</a></span> | Syntax not understood |
| 269 | <span><a href="//www.51job.com/linyi/">临沂</a></span> | Syntax not understood |
| 270 | <span><a href="//www.51job.com/luoyang/">洛阳</a></span> | Syntax not understood |
| 271 | <span><a href="//www.51job.com/lianyungang/">连云港</a></span> | Syntax not understood |
| 272 | <span><a href="//www.51job.com/liuzhou/">柳州</a></span> | Syntax not understood |
| 273 | <span><a href="//www.51job.com/leshan/">乐山</a></span> | Syntax not understood |
| 274 | <span><a href="//www.51job.com/liaocheng/">聊城</a></span> | Syntax not understood |
| 275 | <span><a href="//www.51job.com/linfen/">临汾</a></span> | Syntax not understood |
| 276 | <span><a href="//www.51job.com/luan/">六安</a></span> | Syntax not understood |
| 277 | <span><a href="//www.51job.com/loudi/">娄底</a></span> | Syntax not understood |
| 278 | <span><a href="//www.51job.com/luzhou/">泸州</a></span> | Syntax not understood |
| 279 | <span><a href="//www.51job.com/luohe/">漯河</a></span> | Syntax not understood |
| 280 | </div> | Syntax not understood |
| 281 | <div class="e" name="area_channel_div_mnp" style="display:none"> | Unknown directive |
| 282 | <span><a href="//www.51job.com/mianyang/">绵阳</a></span> | Syntax not understood |
| 283 | <span><a href="//www.51job.com/maanshan/">马鞍山</a></span> | Syntax not understood |
| 284 | <span><a href="//www.51job.com/maoming/">茂名</a></span> | Syntax not understood |
| 285 | <span><a href="//www.51job.com/meishan/">眉山</a></span> | Syntax not understood |
| 286 | <span><a href="//www.51job.com/meizhou/">梅州</a></span> | Syntax not understood |
| 287 | <span><a href="//www.51job.com/nanjing/">南京</a></span> | Syntax not understood |
| 288 | <span><a href="//www.51job.com/ningbo/">宁波</a></span> | Syntax not understood |
| 289 | <span><a href="//www.51job.com/nanchang/">南昌</a></span> | Syntax not understood |
| 290 | <span><a href="//www.51job.com/nantong/">南通</a></span> | Syntax not understood |
| 291 | <span><a href="//www.51job.com/nanning/">南宁</a></span> | Syntax not understood |
| 292 | <span><a href="//www.51job.com/nanchong/">南充</a></span> | Syntax not understood |
| 293 | <span><a href="//www.51job.com/nanyang/">南阳</a></span> | Syntax not understood |
| 294 | <span><a href="//www.51job.com/neijiang/">内江</a></span> | Syntax not understood |
| 295 | <span><a href="//www.51job.com/ningde/">宁德</a></span> | Syntax not understood |
| 296 | <span><a href="//www.51job.com/pingdingshan/">平顶山</a></span> | Syntax not understood |
| 297 | <span><a href="//www.51job.com/putian/">莆田</a></span> | Syntax not understood |
| 298 | <span><a href="//www.51job.com/puyang/">濮阳</a></span> | Syntax not understood |
| 299 | </div> | Syntax not understood |
| 300 | <div class="e" name="area_channel_div_qrs" style="display:none"> | Unknown directive |
| 301 | <span><a href="//www.51job.com/qingdao/">青岛</a></span> | Syntax not understood |
| 302 | <span><a href="//www.51job.com/quanzhou/">泉州</a></span> | Syntax not understood |
| 303 | <span><a href="//www.51job.com/qinhuangdao/">秦皇岛</a></span> | Syntax not understood |
| 304 | <span><a href="//www.51job.com/qingyuan/">清远</a></span> | Syntax not understood |
| 305 | <span><a href="//www.51job.com/qiqihaer/">齐齐哈尔</a></span> | Syntax not understood |
| 306 | <span><a href="//www.51job.com/quzhou/">衢州</a></span> | Syntax not understood |
| 307 | <span><a href="//www.51job.com/qujing/">曲靖</a></span> | Syntax not understood |
| 308 | <span><a href="//www.51job.com/rizhao/">日照</a></span> | Syntax not understood |
| 309 | <span><a href="//www.51job.com/shanghai/">上海</a></span> | Syntax not understood |
| 310 | <span><a href="//www.51job.com/shenzhen/">深圳</a></span> | Syntax not understood |
| 311 | <span><a href="//www.51job.com/shenyang/">沈阳</a></span> | Syntax not understood |
| 312 | <span><a href="//www.51job.com/shijiazhuang/">石家庄</a></span> | Syntax not understood |
| 313 | <span><a href="//www.51job.com/suzhou/">苏州</a></span> | Syntax not understood |
| 314 | <span><a href="//www.51job.com/sanya/">三亚</a></span> | Syntax not understood |
| 315 | <span><a href="//www.51job.com/shaoxing/">绍兴</a></span> | Syntax not understood |
| 316 | <span><a href="//www.51job.com/shantou/">汕头</a></span> | Syntax not understood |
| 317 | <span><a href="//www.51job.com/shanwei/">汕尾</a></span> | Syntax not understood |
| 318 | <span><a href="//www.51job.com/shangqiu/">商丘</a></span> | Syntax not understood |
| 319 | <span><a href="//www.51job.com/shangrao/">上饶</a></span> | Syntax not understood |
| 320 | <span><a href="//www.51job.com/shaoguan/">韶关</a></span> | Syntax not understood |
| 321 | <span><a href="//www.51job.com/shaoyang/">邵阳</a></span> | Syntax not understood |
| 322 | <span><a href="//www.51job.com/shiyan/">十堰</a></span> | Syntax not understood |
| 323 | <span><a href="//www.51job.com/suizhou/">随州</a></span> | Syntax not understood |
| 324 | <span><a href="//www.51job.com/suining/">遂宁</a></span> | Syntax not understood |
| 325 | <span><a href="//www.51job.com/suqian/">宿迁</a></span> | Syntax not understood |
| 326 | <span><a href="//www.51job.com/suzhoue/">宿州</a></span> | Syntax not understood |
| 327 | </div> | Syntax not understood |
| 328 | <div class="e" name="area_channel_div_twx" style="display:none"> | Unknown directive |
| 329 | <span><a href="//www.51job.com/tianjin/">天津</a></span> | Syntax not understood |
| 330 | <span><a href="//www.51job.com/taiyuan/">太原</a></span> | Syntax not understood |
| 331 | <span><a href="//www.51job.com/taizhoue/">台州</a></span> | Syntax not understood |
| 332 | <span><a href="//www.51job.com/tangshan/">唐山</a></span> | Syntax not understood |
| 333 | <span><a href="//www.51job.com/taizhou/">泰州</a></span> | Syntax not understood |
| 334 | <span><a href="//www.51job.com/tieling/">铁岭</a></span> | Syntax not understood |
| 335 | <span><a href="//www.51job.com/taian/">泰安</a></span> | Syntax not understood |
| 336 | <span><a href="//www.51job.com/wuhan/">武汉</a></span> | Syntax not understood |
| 337 | <span><a href="//www.51job.com/wuxi/">无锡</a></span> | Syntax not understood |
| 338 | <span><a href="//www.51job.com/wenzhou/">温州</a></span> | Syntax not understood |
| 339 | <span><a href="//www.51job.com/wulumuqi/">乌鲁木齐</a></span> | Syntax not understood |
| 340 | <span><a href="//www.51job.com/wuhu/">芜湖</a></span> | Syntax not understood |
| 341 | <span><a href="//www.51job.com/weifang/">潍坊</a></span> | Syntax not understood |
| 342 | <span><a href="//www.51job.com/weihai/">威海</a></span> | Syntax not understood |
| 343 | <span><a href="//www.51job.com/weinan/">渭南</a></span> | Syntax not understood |
| 344 | <span><a href="//www.51job.com/xian/">西安</a></span> | Syntax not understood |
| 345 | <span><a href="//www.51job.com/xiamen/">厦门</a></span> | Syntax not understood |
| 346 | <span><a href="//www.51job.com/xuzhou/">徐州</a></span> | Syntax not understood |
| 347 | <span><a href="//www.51job.com/xiangyang/">襄阳</a></span> | Syntax not understood |
| 348 | <span><a href="//www.51job.com/xiangtan/">湘潭</a></span> | Syntax not understood |
| 349 | <span><a href="//www.51job.com/xianyang/">咸阳</a></span> | Syntax not understood |
| 350 | <span><a href="//www.51job.com/xining/">西宁</a></span> | Syntax not understood |
| 351 | <span><a href="//www.51job.com/xianning/">咸宁</a></span> | Syntax not understood |
| 352 | <span><a href="//www.51job.com/xiaogan/">孝感</a></span> | Syntax not understood |
| 353 | <span><a href="//www.51job.com/xinxiang/">新乡</a></span> | Syntax not understood |
| 354 | <span><a href="//www.51job.com/xinyang/">信阳</a></span> | Syntax not understood |
| 355 | <span><a href="//www.51job.com/xingtai/">邢台</a></span> | Syntax not understood |
| 356 | <span><a href="//www.51job.com/xuchang/">许昌</a></span> | Syntax not understood |
| 357 | <span><a href="//www.51job.com/xuancheng/">宣城</a></span> | Syntax not understood |
| 358 | </div> | Syntax not understood |
| 359 | <div class="e" name="area_channel_div_yz" style="display:none"> | Unknown directive |
| 360 | <span><a href="//www.51job.com/yantai/">烟台</a></span> | Syntax not understood |
| 361 | <span><a href="//www.51job.com/yangzhou/">扬州</a></span> | Syntax not understood |
| 362 | <span><a href="//www.51job.com/yichang/">宜昌</a></span> | Syntax not understood |
| 363 | <span><a href="//www.51job.com/yancheng/">盐城</a></span> | Syntax not understood |
| 364 | <span><a href="//www.51job.com/yiwu/">义乌</a></span> | Syntax not understood |
| 365 | <span><a href="//www.51job.com/yingkou/">营口</a></span> | Syntax not understood |
| 366 | <span><a href="//www.51job.com/yinchuan/">银川</a></span> | Syntax not understood |
| 367 | <span><a href="//www.51job.com/yangjiang/">阳江</a></span> | Syntax not understood |
| 368 | <span><a href="//www.51job.com/yibin/">宜宾</a></span> | Syntax not understood |
| 369 | <span><a href="//www.51job.com/yichune/">宜春</a></span> | Syntax not understood |
| 370 | <span><a href="//www.51job.com/yiyang/">益阳</a></span> | Syntax not understood |
| 371 | <span><a href="//www.51job.com/yongzhou/">永州</a></span> | Syntax not understood |
| 372 | <span><a href="//www.51job.com/yulin/">玉林</a></span> | Syntax not understood |
| 373 | <span><a href="//www.51job.com/yueyang/">岳阳</a></span> | Syntax not understood |
| 374 | <span><a href="//www.51job.com/yuncheng/">运城</a></span> | Syntax not understood |
| 375 | <span><a href="//www.51job.com/zhangzhou/">漳州</a></span> | Syntax not understood |
| 376 | <span><a href="//www.51job.com/zhengzhou/">郑州</a></span> | Syntax not understood |
| 377 | <span><a href="//www.51job.com/zhongshan/">中山</a></span> | Syntax not understood |
| 378 | <span><a href="//www.51job.com/zhuhai/">珠海</a></span> | Syntax not understood |
| 379 | <span><a href="//www.51job.com/zhenjiang/">镇江</a></span> | Syntax not understood |
| 380 | <span><a href="//www.51job.com/zhuzhou/">株洲</a></span> | Syntax not understood |
| 381 | <span><a href="//www.51job.com/zhanjiang/">湛江</a></span> | Syntax not understood |
| 382 | <span><a href="//www.51job.com/zhaoqing/">肇庆</a></span> | Syntax not understood |
| 383 | <span><a href="//www.51job.com/zhangjiagang/">张家港</a></span> | Syntax not understood |
| 384 | <span><a href="//www.51job.com/zibo/">淄博</a></span> | Syntax not understood |
| 385 | <span><a href="//www.51job.com/zaozhuang/">枣庄</a></span> | Syntax not understood |
| 386 | <span><a href="//www.51job.com/zhangjiakou/">张家口</a></span> | Syntax not understood |
| 387 | <span><a href="//www.51job.com/zhoukou/">周口</a></span> | Syntax not understood |
| 388 | <span><a href="//www.51job.com/zhumadian/">驻马店</a></span> | Syntax not understood |
| 389 | <span><a href="//www.51job.com/zunyi/">遵义</a></span> | Syntax not understood |
| 390 | </div> | Syntax not understood |
| 391 | </div> | Syntax not understood |
| 392 | <div class="clear"></div> | Syntax not understood |
| 393 | </div> | Syntax not understood |
| 394 | </div> | Syntax not understood |
| 395 | </div> | Syntax not understood |
| 397 | <div id="area_channel_layer_backdrop" class="layer_back_drop_class" style="z-index:999;position:absolute;z-index:999;left:0;top:0;display:none"></div> | Unknown directive |
| 398 | <script> | Syntax not understood |
| 400 | $(document).ready(function(){ | Syntax not understood |
| 401 | $(window).resize(function(){ | Syntax not understood |
| 402 | if(!$("#area_channel_layer").is(":hidden")) | Syntax not understood |
| 403 | { | Syntax not understood |
| 404 | setLayerPosition(); | Syntax not understood |
| 405 | } | Syntax not understood |
| 406 | }); | Syntax not understood |
| 407 | }); | Syntax not understood |
| 409 | window.areaChannelChangeTab = function(sName, oEvent) | Syntax not understood |
| 410 | { | Syntax not understood |
| 411 | $("#area_channel_layer_all").children().hide(); | Syntax not understood |
| 412 | $("#area_channel_layer_list").children().removeClass("on"); | Syntax not understood |
| 413 | $(oEvent).addClass("on"); | Syntax not understood |
| 414 | $("#area_channel_layer_all").children("div[name='area_channel_div_" + sName + "']").show(); | Syntax not understood |
| 415 | $("#area_channel_layer_backdrop").show(); | Syntax not understood |
| 416 | }; | Syntax not understood |
| 418 | window.openAreaChannelLayer = function() | Syntax not understood |
| 419 | { | Syntax not understood |
| 420 | setLayerPosition(); | Syntax not understood |
| 421 | $("#area_channel_layer,#area_channel_layer_backdrop").show(); | Syntax not understood |
| 422 | }; | Syntax not understood |
| 424 | window.setLayerPosition = function() | Syntax not understood |
| 425 | { | Syntax not understood |
| 426 | var dl = $(document).scrollLeft(); | Syntax not understood |
| 427 | var dt = $(document).scrollTop(); | Syntax not understood |
| 428 | var ww = $(document).width(); | Syntax not understood |
| 429 | var dwh = $(document).height(); | Syntax not understood |
| 430 | var wwh = $(window).height(); | Syntax not understood |
| 431 | var ow = $("#area_channel_layer").width(); | Syntax not understood |
| 432 | var oh = $("#area_channel_layer").height(); | Syntax not understood |
| 433 | var fLeft = (ww - ow) / 2 + dl; | Syntax not understood |
| 434 | var fTop = (wwh - oh) * 382 / 1000 + dt;//黄金比例 | Syntax not understood |
| 435 | $("#area_channel_layer").css({'left': Math.max(parseInt(fLeft), dl), 'top': Math.max(parseInt(fTop), dt)}); | Syntax not understood |
| 436 | $("#area_channel_layer_backdrop").css({'width': ww + 'px', 'height': dwh + 'px'}); | Syntax not understood |
| 437 | } | Syntax not understood |
| 438 | </script> <div class="nag" id="topIndex"> | Syntax not understood |
| 439 | <div class="in"> | Syntax not understood |
| 440 | <a href="//www.51job.com"><img class="logo" id="logo" width="100" height="40" src="//img03.51jobcdn.com/im/2022/logo/logo_100x40.png" alt="前程无忧"></a> | Syntax not understood |
| 441 | <img class="slogen" id="slogen" width="162" height="17" src="//img01.51jobcdn.com/im/2016/header/slogen.png?1544426366"> | Syntax not understood |
| 442 | <p class="nlink"> | Syntax not understood |
| 443 | <a class="" href="//www.51job.com/">首页</a> | Syntax not understood |
| 444 | <a class="" href="https://search.51job.com">职位搜索</a> | Unknown directive |
| 445 | <a class="" href="javascript:openAreaChannelLayer();">地区频道</a> | Unknown directive |
| 446 | <a class="" href="https://edu.51job.com" target="_blank">无忧学园</a> | Unknown directive |
| 447 | <a class="" href="https://mkt.51job.com/careerpost/default_res.php">职场资讯</a> | Unknown directive |
| 448 | <a class="" href="https://xy.51job.com/default-xs.php">校园招聘</a> | Unknown directive |
| 449 | </p> | Syntax not understood |
| 450 | </div> | Syntax not understood |
| 451 | </div> | Syntax not understood |
| 452 | <!-- nag end --> | Syntax not understood |
| 454 | <script language="javascript" src="//js.51jobcdn.com/in/js/2023/i/pctop-bundle.js?20230606"></script> | Syntax not understood |
| 455 | </div><div class="maincenter"> | Syntax not understood |
| 456 | <TABLE width="750" border="0" cellspacing="0" cellpadding="0" align="center" style="font-size:12px;"> | Unknown directive |
| 457 | <TR> | Syntax not understood |
| 458 | <TD colspan="3" height="60"><img src="//img01.51jobcdn.com/im/2009/hadn.gif" width="251" height="228"></TD> | Syntax not understood |
| 459 | <TD width="642" height="60"><font size="4" color="#993300">找不到该页</font><font face="Arial, Helvetica, sans-serif" size="4"> File | Syntax not understood |
| 460 | not found<br> | Syntax not understood |
| 461 | </font><br> | Syntax not understood |
| 462 | 您要查看的页已删除,或已改名,或暂时不可用。<br /> | Syntax not understood |
| 463 | <hr size="1"> | Syntax not understood |
| 464 | <br> | Syntax not understood |
| 465 | 请尝试以下操作:<br> | Unknown directive |
| 466 | <ul> | Syntax not understood |
| 467 | <li>如果您已经在地址栏中输入该网页的地址,请确认其拼写正确。 </li> | Syntax not understood |
| 468 | <li>打开 <a href="http://www.51job.com"><font color="#993300">www.51job.com </font></a>主页,然后查找指向您感兴趣信息的链接。 </li> | Unknown directive |
| 469 | <li>单击<a href="javascript:history.back(1)"><img src="//img04.51jobcdn.com/im/2009/back.bmp" border="0"></a><a href="javascript:history.back(1)"><font color="#993300">后退</font></a>按钮,尝试其他链接。</li> | Unknown directive |
| 470 | </ul> | Syntax not understood |
| 471 | </TD> | Syntax not understood |
| 472 | </TR> | Syntax not understood |
| 473 | </TABLE> | Syntax not understood |
| 474 | <br> | Syntax not understood |
| 475 | </div> | Syntax not understood |
| 476 | <div class="footer"> | Syntax not understood |
| 477 | <div class="in"> | Syntax not understood |
| 478 | <div class="nag"> | Syntax not understood |
| 479 | <div class="e e_first"> | Syntax not understood |
| 480 | <label>销售热线:</label>400-886-0051 027-87810888<br> | Syntax not understood |
| 481 | <label>客服热线:</label>400-620-5100<br> | Syntax not understood |
| 482 | <label>Email:</label><a href="mailto:club@51job.com" rel="external nofollow">club@51job.com</a>(个人)<br> | Unknown directive |
| 483 | <a href="mailto:hr@51job.com" rel="external nofollow">hr@51job.com</a>(公司) </div> | Unknown directive |
| 484 | <div class="e"> | Syntax not understood |
| 485 | <strong>简介</strong><br> | Syntax not understood |
| 486 | <a href="//www.51job.com/bo/AboutUs.php" target="_blank">关于我们</a><br> | Syntax not understood |
| 487 | <a href="//www.51job.com/bo/service.php" target="_blank">法律协议</a><br> | Syntax not understood |
| 488 | <a href="//www.51job.com/bo/private.php" target="_blank">隐私条款</a><br> | Syntax not understood |
| 489 | </div> | Syntax not understood |
| 490 | <div class="e"> | Syntax not understood |
| 491 | <strong>合作</strong><br> | Syntax not understood |
| 492 | <a href="//www.51job.com/bo/jobs/new_joinus.php" target="_blank">加入我们</a><br> | Syntax not understood |
| 493 | <a href="//www.51job.com/bo/contact.php" target="_blank">联系我们</a><br> | Syntax not understood |
| 494 | <a href="//www.51job.com/link.php" target="_blank">友情链接</a> | Syntax not understood |
| 495 | </div> | Syntax not understood |
| 496 | <div class="e"> | Syntax not understood |
| 497 | <strong>帮助</strong><br> | Syntax not understood |
| 498 | <a href="https://help.51job.com/home.html" target="_blank">帮助中心</a><br> | Unknown directive |
| 499 | <a href="https://help.51job.com/qa.html?from=b" target="_blank">常见问题</a><br> | Unknown directive |
| 500 | <a href="https://help.51job.com/guide.html?from=d" target="_blank">新手引导</a><br> | Unknown directive |
| 501 | <a href="https://help.51job.com/learnmore.html?from=d" target="_blank">防骗指南</a> | Unknown directive |
| 502 | </div> | Syntax not understood |
| 503 | <div class="e"> | Syntax not understood |
| 504 | <strong>导航</strong><br> | Syntax not understood |
| 505 | <a href="//www.51job.com/sitemap/site_Navigate.php" target="_blank">网站地图</a><br> | Syntax not understood |
| 506 | <a href="https://search.51job.com" target="_blank">职位搜索</a><br> | Unknown directive |
| 507 | <a href="//i.51job.com/resume/resume_center.php?lang=c" target="_blank">简历中心</a> | Syntax not understood |
| 508 | </div> | Syntax not understood |
| 510 | <div class="code c_first"> | Syntax not understood |
| 511 | <img width="80" height="80" src="//img03.51jobcdn.com/im/2022/logo/pc_footnav_app.png" alt="APP下载"> | Syntax not understood |
| 512 | <span><a href="http://app.51job.com/index.html">APP下载</a></span> | Unknown directive |
| 513 | </div> | Syntax not understood |
| 514 | <div class="code"> | Syntax not understood |
| 515 | <img width="80" height="80" src="//img06.51jobcdn.com/im/2022/logo/pc_footnav_wxmp.png" alt="微信服务号"> | Syntax not understood |
| 516 | <span>微信服务号</span> | Syntax not understood |
| 517 | </div> | Syntax not understood |
| 518 | <div class="clear"></div> | Syntax not understood |
| 519 | </div> | Syntax not understood |
| 521 | <p class="note nag"> | Syntax not understood |
| 522 | <span>未经51Job同意,不得转载本网站之所有招聘信息及作品 | 无忧工作网版权所有©1999-{{new Date().getFullYear() || '2026'}} | 互联网协议(IP)地址归属地:上海、无锡、济南</span> | Syntax not understood |
| 524 | </p> </div> | Syntax not understood |
| 525 | </div> | Syntax not understood |
| 526 | </body> | Syntax not understood |
| 527 | </html> | Syntax not understood |
To appear in search results, crawlers need access to your app.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.banner-and-func > div.login-card > div.card-header > img.title div.banner-and-func > div.login-card > div.card-header > img.title |
div.login-card > div.card-header > div.login-type > img div.login-card > div.card-header > div.login-type > img |
div.login-form > div.phone-login-form > div.login-explain > img div.login-form > div.phone-login-form > div.login-explain > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img |
div.sidebar > div.qrcode > div.qr > img.close div.sidebar > div.qrcode > div.qr > img.close |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.68 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
5.50 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
80 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.110
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
3.94 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
5.82 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Slide 4 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/04/03/69cf339439d5f01db3b54b... | 472.8 KiB | 444.6 KiB |
Slide 3 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/04/16/69e04cde5557b17e833b6f... | 448.6 KiB | 420.4 KiB |
Slide 8 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/01/08/695f146ff34bc1145614e8... | 399.1 KiB | 370.9 KiB |
Slide 7 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/09/69ae65e7babb827f24f3f5... | 317.7 KiB | 289.4 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e73b9b4dc41c3233e57b... | 278.2 KiB | 267.3 KiB |
Slide 2 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/16/69b7b33c6e044627182bf2... | 293.4 KiB | 265.2 KiB |
Slide 5 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/16/69b79fa37148d05d458328... | 284.1 KiB | 255.9 KiB |
Slide 6 div.carousel-container > div#carousel > a.slide > img | /traffic-ad-launch/dawn/2026/03/16/69b7736c6c4c40630936c2... | 284.1 KiB | 255.9 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce01a855b5326490cc... | 258.8 KiB | 247.9 KiB |
Slide 1 div.carousel-container > div#carousel > div.slide > img | /traffic-ad-launch/dawn/2026/03/20/69bd04c26ce46225888ef7... | 272.1 KiB | 243.9 KiB |
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img | fecdn.51jobcdn.com/fe/static/51job/2025/04/22/68078a4d/51job-activity-entry.png | 247.4 KiB | 224.3 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/20/69bd1924f3d8e2298cbbc5... | 235.0 KiB | 224.0 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e7489c5fe7163b6cb11a... | 207.1 KiB | 196.1 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e74458e71ee13b50e79d... | 191.2 KiB | 184.0 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e083ef5557b16ee93c38... | 186.3 KiB | 179.1 KiB |
广告 div.banner-container > div.banner-left > div.banner-left-bottom > a.banner-left-bottom-right | /traffic-ad-launch/dawn/2026/04/15/69df4e211a1aa99ba907f7... | 165.7 KiB | 140.2 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69defb2ac67438422bf298... | 140.9 KiB | 133.7 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5eede79f5582ebb7386... | 133.9 KiB | 122.9 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5e54070c11e8337989b... | 131.6 KiB | 120.7 KiB |
div.qrcode > div.qr > div.codeImg > img div.qrcode > div.qr > div.codeImg > img | fecdn.51jobcdn.com/fe/static/51job/home/qrcode_wxmini.jpg | 103.5 KiB | 101.5 KiB |
广告 div.banner-container > div.banner-left > div.banner-left-bottom > a.banner-left-bottom-left | /traffic-ad-launch/dawn/2026/02/28/69a287f55f3b514a33136f... | 119.1 KiB | 93.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/09/69d7067b71ab94fbc81bd9... | 92.0 KiB | 84.8 KiB |
div.app-main > div.banner-and-func > div.banner-container > a.banner-right div.app-main > div.banner-and-func > div.banner-container > a.banner-right | /cdn/51job/FileService/FileUpload/image/20250513/haozhi_b... | 148.4 KiB | 78.1 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69df316e1a1aa92886078a... | 83.6 KiB | 76.4 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/10/9698/9697351/469090300018564228849_3... | 75.8 KiB | 75.6 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/1/668/667731/68411637672705156274_300.p... | 59.2 KiB | 59.0 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e716c970c11e11509bbe... | 67.0 KiB | 56.0 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce245fe71677caacc3... | 62.0 KiB | 54.7 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce2979f55887ca730f... | 60.1 KiB | 52.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/14/69ddd5761a1aa9ab2803f3... | 49.7 KiB | 42.5 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/8/7226/7225530/259109198487742392835_30... | 38.0 KiB | 37.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e0ae1c7ca2631ba8ad07... | 42.8 KiB | 35.5 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/23/69c0a8676ce4626d39959e... | 45.7 KiB | 34.8 KiB |
微信服务号 div.code-item > div.code > div.code-image-border > img | fecdn.51jobcdn.com/fe/51job-comp/images/pc_rightnav_wxmp.png | 31.0 KiB | 29.9 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/10/9828/9827158/551205841784802028203_3... | 26.8 KiB | 26.5 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/1/210/209609/75175317008384436571_300.p... | 26.5 KiB | 26.3 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /cdn/51job/FileService/FileUpload/image/20250513/haozhi_b... | 24.7 KiB | 23.7 KiB |
APP下载 div.code-item > div.code > div.code-image-border > img | fecdn.51jobcdn.com/fe/51job-comp/images/pc_er_right_app.png | 21.8 KiB | 20.7 KiB |
div.item > div.header > div.left > img div.item > div.header > div.left > img | fecdn.51jobcdn.com/fe/static/51job/home/Hot@3x.png | 20.6 KiB | 19.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5b543f5b77963684510... | 24.0 KiB | 18.3 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/1/532/531501/4033731505829101655_300.pn... | 18.0 KiB | 17.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /cdn/51job/FileService/FileUpload/image/20250513/vip_bann... | 14.5 KiB | 13.5 KiB |
div.item > div.header > div.left > img div.item > div.header > div.left > img | fecdn.51jobcdn.com/fe/static/51job/home/star@3x.png | 14.1 KiB | 13.3 KiB |
用微信扫一扫
打开通知获得更多求职资讯 div.qrcode-content > div.sidebar > div.qrcode > div.qr | fecdn.51jobcdn.com/fe/static/51job/home/greenbg@3x.png | 59.7 KiB | 12.8 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/baselogo/1/148/147105/27e7a9da6d8173f14... | 12.8 KiB | 12.6 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /cdn/51job/FileService/FileUpload/image/20250513/wechat_b... | 13.1 KiB | 12.2 KiB |
div.app-footer > div.footer-record > div.middle > img div.app-footer > div.footer-record > div.middle > img | fecdn.51jobcdn.com/fe/static/51job/home/image@3x.png | 7.5 KiB | 7.5 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/baselogo/4/3641/3640357/28c442489695943... | 7.1 KiB | 7.0 KiB |
div.banner-and-func > div.login-card > div.card-header > img.title div.banner-and-func > div.login-card > div.card-header > img.title | fecdn.51jobcdn.com/fe/static/51job/home/login_card_title.png | 7.5 KiB | 6.8 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /traffic-ad-launch/dawn/2026/04/16/69e040fe71ab94a0aa31bc... | 6.6 KiB | 5.7 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /traffic-ad-launch/dawn/2026/04/20/69e5b54b5fe71633b5ac62... | 6.5 KiB | 5.6 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /im/mkt/app/51job_phone/app/homelogo/home_logo_default.pn... | 5.7 KiB | 5.4 KiB |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img | /traffic-ad-launch/dawn/2026/04/17/69e1c6aa1a1aa9c5b30eb2... | 6.4 KiB | 5.4 KiB |
div.search-bar-container > div.logo-container > a > img.logo div.search-bar-container > div.logo-container > a > img.logo | fecdn.51jobcdn.com/fe/static/51job/header/logo@3x.png | 6.0 KiB | 5.4 KiB |
div.bottom > a.left > div > img div.bottom > a.left > div > img | /fansImg/CompLogo/8/7633/7632111/143575136878781147637_30... | 4.7 KiB | 4.7 KiB |
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| static.geetest.com/static/js/fullpage.9.2.0-guwyxh.js | 86400.0 s | 82.3 KiB |
| static.geetest.com/static/wind/style_https.1.5.8.css | 86400.0 s | 5.0 KiB |
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| js.51jobcdn.com/jbs-www/public/js/51job-corejs-493d6984.js | 2.0 KiB | 724 ms |
| js.51jobcdn.com/jbs-www/www/www-vendorb-LVZKXzPs.css | 52.6 KiB | 1.2 s |
| js.51jobcdn.com/jbs-www/www/www-wNYaCdUX.css | 16.5 KiB | 951 ms |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
名企急招
1
/
6
广告
中信建投证券2026年暑期实习生计划
广告
2026汇丰科技中国实习生项目启动
广告
MUJI春季校园招聘
广告
商米科技2026… body > div#app-advertisement | 0.110 |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| js.51jobcdn.com/jbs-www/www/www-vendorb-LVZKXzPs.css | 52.2 KiB | 50.4 KiB |
| js.51jobcdn.com/jbs-www/www/www-wNYaCdUX.css | 16.1 KiB | 10.5 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| js.51jobcdn.com/jbs-www/www/www-vendora-CfMjXdBm.js | 271.5 KiB | 148.8 KiB |
| static.geetest.com/static/js/fullpage.9.2.0-guwyxh.js | 81.9 KiB | 34.7 KiB |
| js.51jobcdn.com/jbs-www/www/www-vendorb-w5L4WULy.js | 60.9 KiB | 27.3 KiB |
| js.51jobcdn.com/jbs-www/www/www-CnHksKWz.js | 55.0 KiB | 25.6 KiB |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img | fecdn.51jobcdn.com/fe/static/51job/2025/04/22/68078a4d/51job-activity-entry.png |
div.search-bar-container > div.logo-container > a > img.logo div.search-bar-container > div.logo-container > a > img.logo | fecdn.51jobcdn.com/fe/static/51job/header/logo@3x.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.banner-left > div.carousel-container > div.arrowNone > button#prev-btn div.banner-left > div.carousel-container > div.arrowNone > button#prev-btn |
div.banner-left > div.carousel-container > div.arrowNone > button#next-btn div.banner-left > div.carousel-container > div.arrowNone > button#next-btn |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.banner-and-func > div.login-card > div.card-header > img.title div.banner-and-func > div.login-card > div.card-header > img.title |
div.login-card > div.card-header > div.login-type > img div.login-card > div.card-header > div.login-type > img |
div.login-form > div.phone-login-form > div.login-explain > img div.login-form > div.phone-login-form > div.login-explain > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img |
div.sidebar > div.qrcode > div.qr > img.close div.sidebar > div.qrcode > div.qr > img.close |
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.el-select__wrapper > div.el-select__selection > div.el-select__selected-item > input#el-id-3343801-203 div.el-select__wrapper > div.el-select__selection > div.el-select__selected-item > input#el-id-3343801-203 |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.search-bar-wrap > div.search-bar-container > div.logo-container > a div.search-bar-wrap > div.search-bar-container > div.logo-container > a |
div.app-main > div.banner-and-func > div.banner-container > a.banner-right div.app-main > div.banner-and-func > div.banner-container > a.banner-right |
body > div#app-activityEntry > div.activity-entry > a body > div#app-activityEntry > div.activity-entry > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
1.8-3.6万·13薪 div.card > a > div.top > div.salary |
5-10年 div.card > a > div.middle > div.tag |
pms div.card > a > div.middle > div.tag |
2-2.5万·13薪 div.card > a > div.top > div.salary |
5年及以上 div.card > a > div.middle > div.tag |
javascript div.card > a > div.middle > div.tag |
vue div.card > a > div.middle > div.tag |
4-5千 div.card > a > div.top > div.salary |
2年及以上 div.card > a > div.middle > div.tag |
2-3万 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
1.3-1.8万·13薪 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
50-60万/年 div.card > a > div.top > div.salary |
8年及以上 div.card > a > div.middle > div.tag |
1.5-3万·15薪 div.card > a > div.top > div.salary |
5年及以上 div.card > a > div.middle > div.tag |
8千-1万 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
5千-1万 div.card > a > div.top > div.salary |
1年及以上 div.card > a > div.middle > div.tag |
1.5-3万 div.card > a > div.top > div.salary |
3年及以上 div.card > a > div.middle > div.tag |
18-30万/年 div.card > a > div.top > div.salary |
2年及以上 div.card > a > div.middle > div.tag |
30-50万/年 div.card > a > div.top > div.salary |
Email邮箱:club@51job.com(个人);hr@51job.com(公司) div.footer > div.footer-content > div.item > span |
club@51job.com div.footer-content > div.item > span > a |
hr@51job.com div.footer-content > div.item > span > a |
未经51Job同意,不得转载本网站之所有招聘信息及作品 | 无忧工作网版权所有©1999-2026 |互联网协议(IP)地址归属地:上海、无锡、济南 div#app-footer > div.app-footer > div.footer-record > div.top |
These are opportunities to improve the legibility of your content.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
These items highlight common accessibility best practices.
Image display dimensions should match natural aspect ratio. Learn more about image aspect ratio.
Performance issues directly impact user engagement and conversion rates.
| URL | Aspect Ratio (Displayed) | Aspect Ratio (Actual) | |
|---|---|---|---|
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e7489c5fe7163b6cb11a... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5b543f5b77963684510... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/23/69c0a8676ce4626d39959e... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e716c970c11e11509bbe... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce01a855b5326490cc... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e73b9b4dc41c3233e57b... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5e54070c11e8337989b... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/03/20/69bd1924f3d8e2298cbbc5... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5eede79f5582ebb7386... | 378 x 178 (2.12) | 768 x 368 (2.09) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/21/69e74458e71ee13b50e79d... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce2979f55887ca730f... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/20/69e5ce245fe71677caacc3... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69defb2ac67438422bf298... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e0ae1c7ca2631ba8ad07... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/16/69e083ef5557b16ee93c38... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/15/69df316e1a1aa92886078a... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/14/69ddd5761a1aa9ab2803f3... | 378 x 118 (3.20) | 768 x 248 (3.10) |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img | /traffic-ad-launch/dawn/2026/04/09/69d7067b71ab94fbc81bd9... | 378 x 118 (3.20) | 768 x 248 (3.10) |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
添加求职意向,职位推荐更精准 div.zone-wrapper > div.head > div > a.addIntention |
小程序 div#app-qrcode > div.qrcode-content > div.sidebar > a.sidebar-item |
APP下载 div#app-qrcode > div.qrcode-content > div.sidebar > a.sidebar-item |
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 2 | <!DOCTYPE html> | Syntax not understood |
| 3 | <html> | Syntax not understood |
| 4 | <head> | Syntax not understood |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | Syntax not understood |
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=gbk"> | Syntax not understood |
| 7 | <link rel="icon" href="https://img04.51jobcdn.com/im/mkt/pc/favicon/favicon_51.ico?20221122" type="image/x-icon"/> | Unknown directive |
| 8 | <link rel="apple-touch-icon-precomposed" href="https://img04.51jobcdn.com/im/m/logo_h5@3x.jpg"> | Unknown directive |
| 9 | <title>招聘网_人才网_找工作_求职_上前程无忧 | 51job 找不到该页</title> | Syntax not understood |
| 10 | <meta name="description" content="前程无忧为企业提供人才招聘、猎头、培训、测评和人事外包在内的全方位的人力资源服务,帮助个人求职者与企业搭建人才招募和人才培养渠道"> | Syntax not understood |
| 11 | <meta name="keywords" content="人才,招聘,简历,工作,面试,薪酬,跳槽,猎头,培训,测评,人事"> | Syntax not understood |
| 12 | <meta name="robots" content="all"> | Syntax not understood |
| 13 | <meta http-equiv="Expires" content="0"> | Syntax not understood |
| 14 | <meta http-equiv="Cache-Control" content="no-cache"> | Syntax not understood |
| 15 | <meta http-equiv="Pragma" content="no-cache"> | Syntax not understood |
| 16 | <link href="//js.51jobcdn.com/in/css/style.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 17 | <link href="//js.51jobcdn.com/in/css/career.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 18 | <link href="//js.51jobcdn.com/in/css/logo.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 19 | <link href="//js.51jobcdn.com/in/css/2017/public/base.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 20 | <link href="//js.51jobcdn.com/in/css/2017/public/panel-pop.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 21 | <link href="//js.51jobcdn.com/in/css/2017/public/form.css?20230105" rel="stylesheet" type="text/css" /> | Syntax not understood |
| 22 | <script language="javascript"> | Syntax not understood |
| 23 | var _tkd = _tkd || []; //点击量统计用 | Syntax not understood |
| 24 | var lang = []; | Syntax not understood |
| 25 | var supporthttps = 1; //浏览器是否支持https | Syntax not understood |
| 26 | var currenthttps = (window.location.protocol === 'https:') ? '1' : '0'; //当前是否为https | Unknown directive |
| 27 | var systemtime = 1748254761674; | Syntax not understood |
| 28 | var d_system_client_time = systemtime - new Date().getTime(); | Syntax not understood |
| 29 | var trackConfig = { | Syntax not understood |
| 30 | 'version': '', | Unknown directive |
| 31 | 'guid': '69d9801bb4404e770fdfd3be6fe4af35', | Unknown directive |
| 32 | 'ip': '116.246.3.99', | Unknown directive |
| 33 | 'accountid': '', | Unknown directive |
| 34 | 'refpage': '', | Unknown directive |
| 35 | 'refdomain': '', | Unknown directive |
| 36 | 'domain': 'www.51job.com', | Unknown directive |
| 37 | 'pageName': 'missing.php', | Unknown directive |
| 38 | 'partner': '', | Unknown directive |
| 39 | 'islanding': '0', | Unknown directive |
| 40 | 'fromdomain': '51job_web', | Unknown directive |
| 41 | 'to': '', | Unknown directive |
| 42 | 'createDate': '', | Unknown directive |
| 43 | 'identityType': '', | Unknown directive |
| 44 | 'sensor_url':'//scdata.51job.com/sa?project=production' | Unknown directive |
| 45 | }; | Syntax not understood |
| 46 | if (window.localStorage instanceof Object) | Syntax not understood |
| 47 | { | Syntax not understood |
| 48 | } | Syntax not understood |
| 49 | window.cfg = { | Syntax not understood |
| 50 | lang:'c', | Unknown directive |
| 51 | domain : { | Unknown directive |
| 52 | my : 'http://my.51job.com', | Unknown directive |
| 53 | login : 'https://login.51job.com', | Unknown directive |
| 54 | search : 'https://search.51job.com', | Unknown directive |
| 55 | www : '//www.51job.com', | Unknown directive |
| 56 | jobs : 'https://jobs.51job.com', | Unknown directive |
| 57 | jianli : 'https://jianli.51job.com', | Unknown directive |
| 58 | company : '//company.51job.com', | Unknown directive |
| 59 | i : '//i.51job.com', | Unknown directive |
| 60 | jc : 'https://jc.51job.com', | Unknown directive |
| 61 | map : 'https://map.51job.com', | Unknown directive |
| 62 | m : 'https://m.51job.com', | Unknown directive |
| 63 | cdn : '//js.51jobcdn.com', | Unknown directive |
| 64 | help : 'https://help.51job.com', | Unknown directive |
| 65 | img : '//img02.51jobcdn.com', | Unknown directive |
| 66 | dj : '//it.51job.com', | Unknown directive |
| 67 | mdj : '//mit.51job.com', | Unknown directive |
| 68 | mq : '//mq.51job.com', | Unknown directive |
| 69 | mmq : '//mmq.51job.com', | Unknown directive |
| 70 | kbc : 'https://blanchard.51job.com', | Unknown directive |
| 71 | mtr : 'https://medu.51job.com', | Unknown directive |
| 72 | tr : 'https://edu.51job.com', | Unknown directive |
| 73 | train : '//tr.51job.com', | Unknown directive |
| 74 | shixi : '//shixi.51job.com', | Unknown directive |
| 75 | mwenku : 'https://mwenku.51job.com', | Unknown directive |
| 76 | mqiuzhixin : 'http://m.qiuzhixin.51job.com', | Unknown directive |
| 77 | } | Syntax not understood |
| 78 | }; | Syntax not understood |
| 80 | </script> | Syntax not understood |
| 81 | <script type="text/javascript" src="//js.51jobcdn.com/in/js/2016/pointtrack.js?20211019"></script> | Syntax not understood |
| 82 | <script> | Syntax not understood |
| 83 | var _hmt = _hmt || []; | Syntax not understood |
| 84 | (function() { | Syntax not understood |
| 85 | var hm = document.createElement("script"); | Syntax not understood |
| 86 | hm.src = "https://hm.baidu.com/hm.js?1370a11171bd6f2d9b1fe98951541941";//百度统计代码 | Unknown directive |
| 87 | var s = document.getElementsByTagName("script")[0]; | Syntax not understood |
| 88 | s.parentNode.insertBefore(hm, s); | Syntax not understood |
| 89 | })(); | Syntax not understood |
| 90 | </script> | Syntax not understood |
| 92 | <script language="javascript" src="//js.51jobcdn.com/in/js/2016/jquery.js?20230105"></script> | Syntax not understood |
| 93 | <script language="javascript" src="//js.51jobcdn.com/in/js/sensorsdata/sensorsdata.min.js?20230105"></script> | Syntax not understood |
| 94 | <script language="javascript" src="//js.51jobcdn.com/in/js/sensorsdata/sensors_gbk_seo.js?20230105"></script> | Syntax not understood |
| 95 | <script language="javascript" src="//js.51jobcdn.com/in/js/sensorsdata/sensorsini.js?20230105"></script> | Syntax not understood |
| 96 | </head> | Syntax not understood |
| 97 | <body> | Syntax not understood |
| 98 | <div class="header"> | Syntax not understood |
| 99 | <!-- bar start --> | Syntax not understood |
| 100 | <div class="bar"> | Syntax not understood |
| 101 | <div class="in"> | Syntax not understood |
| 102 | <div class="language"> | Syntax not understood |
| 103 | <ul id="languagelist"> | Syntax not understood |
| 104 | <li class="tle"><span class="list">简</span></li> | Syntax not understood |
| 105 | <li class="last"> | Syntax not understood |
| 106 | <a href="//www.51job.com/default-e.php" rel="external nofollow">EN</a></li> | Syntax not understood |
| 107 | </ul> | Syntax not understood |
| 108 | </div> | Syntax not understood |
| 109 | <div class="uer"> | Syntax not understood |
| 110 | <p class="op"> | Syntax not understood |
| 111 | <a data-sensor-id="sensor_home_rightTopLogin" href="https://login.51job.com/login.php?lang=&url=http%3A%2F%2Fwww.51job.com%2Fin%2Fmissing.php&qrlogin=2" rel="external nofollow">登录</a> / | Unknown directive |
| 112 | <a data-sensor-id="sensor_home_rightTopRegister"v href="https://login.51job.com/register.php?lang=&url=http%3A%2F%2Fwww.51job.com%2Fin%2Fmissing.php&qrlogin=2" rel="external nofollow">注册</a> | Unknown directive |
| 113 | </p> | Syntax not understood |
| 115 | </div> | Syntax not understood |
| 117 | <div class="appNew"> | Syntax not understood |
| 118 | <ul> | Syntax not understood |
| 119 | <li> | Syntax not understood |
| 120 | <em class="e_icon"></em><a href="http://app.51job.com/index.html">APP下载</a> | Unknown directive |
| 121 | </li> | Syntax not understood |
| 122 | <li> | Syntax not understood |
| 123 | <img width="80" height="80" src="//img05.51jobcdn.com/im/2022/logo/pc_topnav_app.png" alt="app download"> | Syntax not understood |
| 124 | <p> | Syntax not understood |
| 125 | <a href="http://app.51job.com/index.html">APP下载</a> | Unknown directive |
| 126 | </p> | Syntax not understood |
| 127 | </li> | Syntax not understood |
| 128 | </ul> | Syntax not understood |
| 129 | </div> | Syntax not understood |
| 130 | <p class="rlk"> | Syntax not understood |
| 131 | <a href="//baike.51job.com" target="_blank">职场百科</a> | Syntax not understood |
| 132 | <span class="lb"> </span> | Syntax not understood |
| 133 | <a href="//wenku.51job.com" target="_blank">职场文库</a> | Syntax not understood |
| 134 | <span class="lb"> </span> | Syntax not understood |
| 135 | <a href="https://jobs.51job.com" target="_blank">招聘信息</a> | Unknown directive |
| 136 | <span class="lb"> </span> | Syntax not understood |
| 137 | <a href="https://ehire.51job.com" target="_blank">我要招聘</a> | Unknown directive |
| 138 | <span class="lb"> </span> | Syntax not understood |
| 139 | </p> | Syntax not understood |
| 140 | </div> | Syntax not understood |
| 141 | <input type="hidden" id="welname" name="welname" value="欢迎您"> | Syntax not understood |
| 142 | </div> | Syntax not understood |
| 143 | <!-- top end --> | Syntax not understood |
| 144 | <!-- 英文版为body添加class --> | Syntax not understood |
| 145 | <script> | Syntax not understood |
| 146 | </script> | Syntax not understood |
| 147 | <!-- nag start --> | Syntax not understood |
| 148 | <div class="pop-city" style="display:none;position: absolute; z-index: 1000;" id="area_channel_layer"> | Unknown directive |
| 149 | <div class="tle"> | Syntax not understood |
| 150 | 地区选择 <em class="close" onclick="jvascript:$('#area_channel_layer,#area_channel_layer_backdrop').hide();"></em> | Unknown directive |
| 151 | </div> | Syntax not understood |
| 152 | <div class="pcon"> | Syntax not understood |
| 153 | <div class="ht"> | Syntax not understood |
| 154 | <label>热门城市</label> | Syntax not understood |
| 155 | <a href="//www.51job.com/beijing/">北京</a> | Syntax not understood |
| 156 | <a href="//www.51job.com/shanghai/">上海</a> | Syntax not understood |
| 157 | <a href="//www.51job.com/guangzhou/">广州</a> | Syntax not understood |
| 158 | <a href="//www.51job.com/shenzhen/">深圳</a> | Syntax not understood |
| 159 | <a href="//www.51job.com/wuhan/">武汉</a> | Syntax not understood |
| 160 | <a href="//www.51job.com/xian/">西安</a> | Syntax not understood |
| 161 | <a href="//www.51job.com/hangzhou/">杭州</a> | Syntax not understood |
| 162 | <a href="//www.51job.com/nanjing/">南京</a> | Syntax not understood |
| 163 | <a href="//www.51job.com/chengdu/">成都</a> | Syntax not understood |
| 164 | <a href="//www.51job.com/chongqing/">重庆</a> | Syntax not understood |
| 165 | </div> | Syntax not understood |
| 166 | <div class="cbox"> | Syntax not understood |
| 167 | <ul id="area_channel_layer_list"> | Syntax not understood |
| 168 | <li class="on" onclick="areaChannelChangeTab('abc', this)">A B C</li> | Syntax not understood |
| 169 | <li onclick="areaChannelChangeTab('def', this)">D E F</li> | Syntax not understood |
| 170 | <li onclick="areaChannelChangeTab('gh', this)">G H</li> | Syntax not understood |
| 171 | <li onclick="areaChannelChangeTab('jkl', this)">J K L</li> | Syntax not understood |
| 172 | <li onclick="areaChannelChangeTab('mnp', this)">M N P</li> | Syntax not understood |
| 173 | <li onclick="areaChannelChangeTab('qrs', this)">Q R S</li> | Syntax not understood |
| 174 | <li onclick="areaChannelChangeTab('twx', this)">T W X</li> | Syntax not understood |
| 175 | <li onclick="areaChannelChangeTab('yz', this)">Y Z</li> | Syntax not understood |
| 176 | </ul> | Syntax not understood |
| 177 | <div class="clst" id="area_channel_layer_all"> | Syntax not understood |
| 178 | <div class="e" name="area_channel_div_abc"> | Syntax not understood |
| 179 | <span><a href="//www.51job.com/anshan/">鞍山</a></span> | Syntax not understood |
| 180 | <span><a href="//www.51job.com/anqing/">安庆</a></span> | Syntax not understood |
| 181 | <span><a href="//www.51job.com/anyang/">安阳</a></span> | Syntax not understood |
| 182 | <span><a href="//www.51job.com/beijing/">北京</a></span> | Syntax not understood |
| 183 | <span><a href="//www.51job.com/baotou/">包头</a></span> | Syntax not understood |
| 184 | <span><a href="//www.51job.com/baoding/">保定</a></span> | Syntax not understood |
| 185 | <span><a href="//www.51job.com/bengbu/">蚌埠</a></span> | Syntax not understood |
| 186 | <span><a href="//www.51job.com/baoji/">宝鸡</a></span> | Syntax not understood |
| 187 | <span><a href="//www.51job.com/binzhou/">滨州</a></span> | Syntax not understood |
| 188 | <span><a href="//www.51job.com/changchun/">长春</a></span> | Syntax not understood |
| 189 | <span><a href="//www.51job.com/changsha/">长沙</a></span> | Syntax not understood |
| 190 | <span><a href="//www.51job.com/chengdu/">成都</a></span> | Syntax not understood |
| 191 | <span><a href="//www.51job.com/chongqing/">重庆</a></span> | Syntax not understood |
| 192 | <span><a href="//www.51job.com/changzhou/">常州</a></span> | Syntax not understood |
| 193 | <span><a href="//www.51job.com/changde/">常德</a></span> | Syntax not understood |
| 194 | <span><a href="//www.51job.com/changshu/">常熟</a></span> | Syntax not understood |
| 195 | <span><a href="//www.51job.com/cangzhou/">沧州</a></span> | Syntax not understood |
| 196 | <span><a href="//www.51job.com/chaozhou/">潮州</a></span> | Syntax not understood |
| 197 | <span><a href="//www.51job.com/chenzhou/">郴州</a></span> | Syntax not understood |
| 198 | <span><a href="//www.51job.com/chifeng/">赤峰</a></span> | Syntax not understood |
| 199 | <span><a href="//www.51job.com/chuzhou/">滁州</a></span> | Syntax not understood |
| 200 | <span><a href="//www.51job.com/changzhi/">长治</a></span> | Syntax not understood |
| 201 | </div> | Syntax not understood |
| 202 | <div class="e" name="area_channel_div_def" style="display:none"> | Unknown directive |
| 203 | <span><a href="//www.51job.com/dalian/">大连</a></span> | Syntax not understood |
| 204 | <span><a href="//www.51job.com/dongguan/">东莞</a></span> | Syntax not understood |
| 205 | <span><a href="//www.51job.com/dandong/">丹东</a></span> | Syntax not understood |
| 206 | <span><a href="//www.51job.com/daqing/">大庆</a></span> | Syntax not understood |
| 207 | <span><a href="//www.51job.com/dazhou/">达州</a></span> | Syntax not understood |
| 208 | <span><a href="//www.51job.com/datong/">大同</a></span> | Syntax not understood |
| 209 | <span><a href="//www.51job.com/deyang/">德阳</a></span> | Syntax not understood |
| 210 | <span><a href="//www.51job.com/dezhou/">德州</a></span> | Syntax not understood |
| 211 | <span><a href="//www.51job.com/dongying/">东营</a></span> | Syntax not understood |
| 212 | <span><a href="//www.51job.com/errduosi/">鄂尔多斯</a></span> | Syntax not understood |
| 213 | <span><a href="//www.51job.com/ezhou/">鄂州</a></span> | Syntax not understood |
| 214 | <span><a href="//www.51job.com/fuzhou/">福州</a></span> | Syntax not understood |
| 215 | <span><a href="//www.51job.com/foshan/">佛山</a></span> | Syntax not understood |
| 216 | <span><a href="//www.51job.com/fushun/">抚顺</a></span> | Syntax not understood |
| 217 | <span><a href="//www.51job.com/fuzhoue/">抚州</a></span> | Syntax not understood |
| 218 | <span><a href="//www.51job.com/fuyang/">阜阳</a></span> | Syntax not understood |
| 219 | </div> | Syntax not understood |
| 220 | <div class="e" name="area_channel_div_gh" style="display:none"> | Unknown directive |
| 221 | <span><a href="//www.51job.com/guangzhou/">广州</a></span> | Syntax not understood |
| 222 | <span><a href="//www.51job.com/guiyang/">贵阳</a></span> | Syntax not understood |
| 223 | <span><a href="//www.51job.com/ganzhou/">赣州</a></span> | Syntax not understood |
| 224 | <span><a href="//www.51job.com/guangan/">广安</a></span> | Syntax not understood |
| 225 | <span><a href="//www.51job.com/guangyuan/">广元</a></span> | Syntax not understood |
| 226 | <span><a href="//www.51job.com/guigang/">贵港</a></span> | Syntax not understood |
| 227 | <span><a href="//www.51job.com/guilin/">桂林</a></span> | Syntax not understood |
| 228 | <span><a href="//www.51job.com/harbin/">哈尔滨</a></span> | Syntax not understood |
| 229 | <span><a href="//www.51job.com/hangzhou/">杭州</a></span> | Syntax not understood |
| 230 | <span><a href="//www.51job.com/hefei/">合肥</a></span> | Syntax not understood |
| 231 | <span><a href="//www.51job.com/haikou/">海口</a></span> | Syntax not understood |
| 232 | <span><a href="//www.51job.com/huhhot/">呼和浩特</a></span> | Syntax not understood |
| 233 | <span><a href="//www.51job.com/huizhou/">惠州</a></span> | Syntax not understood |
| 234 | <span><a href="//www.51job.com/hengyang/">衡阳</a></span> | Syntax not understood |
| 235 | <span><a href="//www.51job.com/huaian/">淮安</a></span> | Syntax not understood |
| 236 | <span><a href="//www.51job.com/huzhou/">湖州</a></span> | Syntax not understood |
| 237 | <span><a href="//www.51job.com/handan/">邯郸</a></span> | Syntax not understood |
| 238 | <span><a href="//www.51job.com/hanzhong/">汉中</a></span> | Syntax not understood |
| 239 | <span><a href="//www.51job.com/heyuan/">河源</a></span> | Syntax not understood |
| 240 | <span><a href="//www.51job.com/heze/">菏泽</a></span> | Syntax not understood |
| 241 | <span><a href="//www.51job.com/hengshui/">衡水</a></span> | Syntax not understood |
| 242 | <span><a href="//www.51job.com/huaihua/">怀化</a></span> | Syntax not understood |
| 243 | <span><a href="//www.51job.com/huaibei/">淮北</a></span> | Syntax not understood |
| 244 | <span><a href="//www.51job.com/huainan/">淮南</a></span> | Syntax not understood |
| 245 | <span><a href="//www.51job.com/huanggang/">黄冈</a></span> | Syntax not understood |
| 246 | <span><a href="//www.51job.com/huangshi/">黄石</a></span> | Syntax not understood |
| 247 | </div> | Syntax not understood |
| 248 | <div class="e" name="area_channel_div_jkl" style="display:none"> | Unknown directive |
| 249 | <span><a href="//www.51job.com/jinan/">济南</a></span> | Syntax not understood |
| 250 | <span><a href="//www.51job.com/jiaxing/">嘉兴</a></span> | Syntax not understood |
| 251 | <span><a href="//www.51job.com/jinhua/">金华</a></span> | Syntax not understood |
| 252 | <span><a href="//www.51job.com/jilin/">吉林</a></span> | Syntax not understood |
| 253 | <span><a href="//www.51job.com/jiangmen/">江门</a></span> | Syntax not understood |
| 254 | <span><a href="//www.51job.com/jingzhou/">荆州</a></span> | Syntax not understood |
| 255 | <span><a href="//www.51job.com/jining/">济宁</a></span> | Syntax not understood |
| 256 | <span><a href="//www.51job.com/jiujiang/">九江</a></span> | Syntax not understood |
| 257 | <span><a href="//www.51job.com/jian/">吉安</a></span> | Syntax not understood |
| 258 | <span><a href="//www.51job.com/jiaozuo/">焦作</a></span> | Syntax not understood |
| 259 | <span><a href="//www.51job.com/jieyang/">揭阳</a></span> | Syntax not understood |
| 260 | <span><a href="//www.51job.com/jinzhou/">锦州</a></span> | Syntax not understood |
| 261 | <span><a href="//www.51job.com/jinzhong/">晋中</a></span> | Syntax not understood |
| 262 | <span><a href="//www.51job.com/jingmen/">荆门</a></span> | Syntax not understood |
| 263 | <span><a href="//www.51job.com/kunming/">昆明</a></span> | Syntax not understood |
| 264 | <span><a href="//www.51job.com/kunshan/">昆山</a></span> | Syntax not understood |
| 265 | <span><a href="//www.51job.com/kaifeng/">开封</a></span> | Syntax not understood |
| 266 | <span><a href="//www.51job.com/lhasa/">拉萨</a></span> | Syntax not understood |
| 267 | <span><a href="//www.51job.com/lanzhou/">兰州</a></span> | Syntax not understood |
| 268 | <span><a href="//www.51job.com/langfang/">廊坊</a></span> | Syntax not understood |
| 269 | <span><a href="//www.51job.com/linyi/">临沂</a></span> | Syntax not understood |
| 270 | <span><a href="//www.51job.com/luoyang/">洛阳</a></span> | Syntax not understood |
| 271 | <span><a href="//www.51job.com/lianyungang/">连云港</a></span> | Syntax not understood |
| 272 | <span><a href="//www.51job.com/liuzhou/">柳州</a></span> | Syntax not understood |
| 273 | <span><a href="//www.51job.com/leshan/">乐山</a></span> | Syntax not understood |
| 274 | <span><a href="//www.51job.com/liaocheng/">聊城</a></span> | Syntax not understood |
| 275 | <span><a href="//www.51job.com/linfen/">临汾</a></span> | Syntax not understood |
| 276 | <span><a href="//www.51job.com/luan/">六安</a></span> | Syntax not understood |
| 277 | <span><a href="//www.51job.com/loudi/">娄底</a></span> | Syntax not understood |
| 278 | <span><a href="//www.51job.com/luzhou/">泸州</a></span> | Syntax not understood |
| 279 | <span><a href="//www.51job.com/luohe/">漯河</a></span> | Syntax not understood |
| 280 | </div> | Syntax not understood |
| 281 | <div class="e" name="area_channel_div_mnp" style="display:none"> | Unknown directive |
| 282 | <span><a href="//www.51job.com/mianyang/">绵阳</a></span> | Syntax not understood |
| 283 | <span><a href="//www.51job.com/maanshan/">马鞍山</a></span> | Syntax not understood |
| 284 | <span><a href="//www.51job.com/maoming/">茂名</a></span> | Syntax not understood |
| 285 | <span><a href="//www.51job.com/meishan/">眉山</a></span> | Syntax not understood |
| 286 | <span><a href="//www.51job.com/meizhou/">梅州</a></span> | Syntax not understood |
| 287 | <span><a href="//www.51job.com/nanjing/">南京</a></span> | Syntax not understood |
| 288 | <span><a href="//www.51job.com/ningbo/">宁波</a></span> | Syntax not understood |
| 289 | <span><a href="//www.51job.com/nanchang/">南昌</a></span> | Syntax not understood |
| 290 | <span><a href="//www.51job.com/nantong/">南通</a></span> | Syntax not understood |
| 291 | <span><a href="//www.51job.com/nanning/">南宁</a></span> | Syntax not understood |
| 292 | <span><a href="//www.51job.com/nanchong/">南充</a></span> | Syntax not understood |
| 293 | <span><a href="//www.51job.com/nanyang/">南阳</a></span> | Syntax not understood |
| 294 | <span><a href="//www.51job.com/neijiang/">内江</a></span> | Syntax not understood |
| 295 | <span><a href="//www.51job.com/ningde/">宁德</a></span> | Syntax not understood |
| 296 | <span><a href="//www.51job.com/pingdingshan/">平顶山</a></span> | Syntax not understood |
| 297 | <span><a href="//www.51job.com/putian/">莆田</a></span> | Syntax not understood |
| 298 | <span><a href="//www.51job.com/puyang/">濮阳</a></span> | Syntax not understood |
| 299 | </div> | Syntax not understood |
| 300 | <div class="e" name="area_channel_div_qrs" style="display:none"> | Unknown directive |
| 301 | <span><a href="//www.51job.com/qingdao/">青岛</a></span> | Syntax not understood |
| 302 | <span><a href="//www.51job.com/quanzhou/">泉州</a></span> | Syntax not understood |
| 303 | <span><a href="//www.51job.com/qinhuangdao/">秦皇岛</a></span> | Syntax not understood |
| 304 | <span><a href="//www.51job.com/qingyuan/">清远</a></span> | Syntax not understood |
| 305 | <span><a href="//www.51job.com/qiqihaer/">齐齐哈尔</a></span> | Syntax not understood |
| 306 | <span><a href="//www.51job.com/quzhou/">衢州</a></span> | Syntax not understood |
| 307 | <span><a href="//www.51job.com/qujing/">曲靖</a></span> | Syntax not understood |
| 308 | <span><a href="//www.51job.com/rizhao/">日照</a></span> | Syntax not understood |
| 309 | <span><a href="//www.51job.com/shanghai/">上海</a></span> | Syntax not understood |
| 310 | <span><a href="//www.51job.com/shenzhen/">深圳</a></span> | Syntax not understood |
| 311 | <span><a href="//www.51job.com/shenyang/">沈阳</a></span> | Syntax not understood |
| 312 | <span><a href="//www.51job.com/shijiazhuang/">石家庄</a></span> | Syntax not understood |
| 313 | <span><a href="//www.51job.com/suzhou/">苏州</a></span> | Syntax not understood |
| 314 | <span><a href="//www.51job.com/sanya/">三亚</a></span> | Syntax not understood |
| 315 | <span><a href="//www.51job.com/shaoxing/">绍兴</a></span> | Syntax not understood |
| 316 | <span><a href="//www.51job.com/shantou/">汕头</a></span> | Syntax not understood |
| 317 | <span><a href="//www.51job.com/shanwei/">汕尾</a></span> | Syntax not understood |
| 318 | <span><a href="//www.51job.com/shangqiu/">商丘</a></span> | Syntax not understood |
| 319 | <span><a href="//www.51job.com/shangrao/">上饶</a></span> | Syntax not understood |
| 320 | <span><a href="//www.51job.com/shaoguan/">韶关</a></span> | Syntax not understood |
| 321 | <span><a href="//www.51job.com/shaoyang/">邵阳</a></span> | Syntax not understood |
| 322 | <span><a href="//www.51job.com/shiyan/">十堰</a></span> | Syntax not understood |
| 323 | <span><a href="//www.51job.com/suizhou/">随州</a></span> | Syntax not understood |
| 324 | <span><a href="//www.51job.com/suining/">遂宁</a></span> | Syntax not understood |
| 325 | <span><a href="//www.51job.com/suqian/">宿迁</a></span> | Syntax not understood |
| 326 | <span><a href="//www.51job.com/suzhoue/">宿州</a></span> | Syntax not understood |
| 327 | </div> | Syntax not understood |
| 328 | <div class="e" name="area_channel_div_twx" style="display:none"> | Unknown directive |
| 329 | <span><a href="//www.51job.com/tianjin/">天津</a></span> | Syntax not understood |
| 330 | <span><a href="//www.51job.com/taiyuan/">太原</a></span> | Syntax not understood |
| 331 | <span><a href="//www.51job.com/taizhoue/">台州</a></span> | Syntax not understood |
| 332 | <span><a href="//www.51job.com/tangshan/">唐山</a></span> | Syntax not understood |
| 333 | <span><a href="//www.51job.com/taizhou/">泰州</a></span> | Syntax not understood |
| 334 | <span><a href="//www.51job.com/tieling/">铁岭</a></span> | Syntax not understood |
| 335 | <span><a href="//www.51job.com/taian/">泰安</a></span> | Syntax not understood |
| 336 | <span><a href="//www.51job.com/wuhan/">武汉</a></span> | Syntax not understood |
| 337 | <span><a href="//www.51job.com/wuxi/">无锡</a></span> | Syntax not understood |
| 338 | <span><a href="//www.51job.com/wenzhou/">温州</a></span> | Syntax not understood |
| 339 | <span><a href="//www.51job.com/wulumuqi/">乌鲁木齐</a></span> | Syntax not understood |
| 340 | <span><a href="//www.51job.com/wuhu/">芜湖</a></span> | Syntax not understood |
| 341 | <span><a href="//www.51job.com/weifang/">潍坊</a></span> | Syntax not understood |
| 342 | <span><a href="//www.51job.com/weihai/">威海</a></span> | Syntax not understood |
| 343 | <span><a href="//www.51job.com/weinan/">渭南</a></span> | Syntax not understood |
| 344 | <span><a href="//www.51job.com/xian/">西安</a></span> | Syntax not understood |
| 345 | <span><a href="//www.51job.com/xiamen/">厦门</a></span> | Syntax not understood |
| 346 | <span><a href="//www.51job.com/xuzhou/">徐州</a></span> | Syntax not understood |
| 347 | <span><a href="//www.51job.com/xiangyang/">襄阳</a></span> | Syntax not understood |
| 348 | <span><a href="//www.51job.com/xiangtan/">湘潭</a></span> | Syntax not understood |
| 349 | <span><a href="//www.51job.com/xianyang/">咸阳</a></span> | Syntax not understood |
| 350 | <span><a href="//www.51job.com/xining/">西宁</a></span> | Syntax not understood |
| 351 | <span><a href="//www.51job.com/xianning/">咸宁</a></span> | Syntax not understood |
| 352 | <span><a href="//www.51job.com/xiaogan/">孝感</a></span> | Syntax not understood |
| 353 | <span><a href="//www.51job.com/xinxiang/">新乡</a></span> | Syntax not understood |
| 354 | <span><a href="//www.51job.com/xinyang/">信阳</a></span> | Syntax not understood |
| 355 | <span><a href="//www.51job.com/xingtai/">邢台</a></span> | Syntax not understood |
| 356 | <span><a href="//www.51job.com/xuchang/">许昌</a></span> | Syntax not understood |
| 357 | <span><a href="//www.51job.com/xuancheng/">宣城</a></span> | Syntax not understood |
| 358 | </div> | Syntax not understood |
| 359 | <div class="e" name="area_channel_div_yz" style="display:none"> | Unknown directive |
| 360 | <span><a href="//www.51job.com/yantai/">烟台</a></span> | Syntax not understood |
| 361 | <span><a href="//www.51job.com/yangzhou/">扬州</a></span> | Syntax not understood |
| 362 | <span><a href="//www.51job.com/yichang/">宜昌</a></span> | Syntax not understood |
| 363 | <span><a href="//www.51job.com/yancheng/">盐城</a></span> | Syntax not understood |
| 364 | <span><a href="//www.51job.com/yiwu/">义乌</a></span> | Syntax not understood |
| 365 | <span><a href="//www.51job.com/yingkou/">营口</a></span> | Syntax not understood |
| 366 | <span><a href="//www.51job.com/yinchuan/">银川</a></span> | Syntax not understood |
| 367 | <span><a href="//www.51job.com/yangjiang/">阳江</a></span> | Syntax not understood |
| 368 | <span><a href="//www.51job.com/yibin/">宜宾</a></span> | Syntax not understood |
| 369 | <span><a href="//www.51job.com/yichune/">宜春</a></span> | Syntax not understood |
| 370 | <span><a href="//www.51job.com/yiyang/">益阳</a></span> | Syntax not understood |
| 371 | <span><a href="//www.51job.com/yongzhou/">永州</a></span> | Syntax not understood |
| 372 | <span><a href="//www.51job.com/yulin/">玉林</a></span> | Syntax not understood |
| 373 | <span><a href="//www.51job.com/yueyang/">岳阳</a></span> | Syntax not understood |
| 374 | <span><a href="//www.51job.com/yuncheng/">运城</a></span> | Syntax not understood |
| 375 | <span><a href="//www.51job.com/zhangzhou/">漳州</a></span> | Syntax not understood |
| 376 | <span><a href="//www.51job.com/zhengzhou/">郑州</a></span> | Syntax not understood |
| 377 | <span><a href="//www.51job.com/zhongshan/">中山</a></span> | Syntax not understood |
| 378 | <span><a href="//www.51job.com/zhuhai/">珠海</a></span> | Syntax not understood |
| 379 | <span><a href="//www.51job.com/zhenjiang/">镇江</a></span> | Syntax not understood |
| 380 | <span><a href="//www.51job.com/zhuzhou/">株洲</a></span> | Syntax not understood |
| 381 | <span><a href="//www.51job.com/zhanjiang/">湛江</a></span> | Syntax not understood |
| 382 | <span><a href="//www.51job.com/zhaoqing/">肇庆</a></span> | Syntax not understood |
| 383 | <span><a href="//www.51job.com/zhangjiagang/">张家港</a></span> | Syntax not understood |
| 384 | <span><a href="//www.51job.com/zibo/">淄博</a></span> | Syntax not understood |
| 385 | <span><a href="//www.51job.com/zaozhuang/">枣庄</a></span> | Syntax not understood |
| 386 | <span><a href="//www.51job.com/zhangjiakou/">张家口</a></span> | Syntax not understood |
| 387 | <span><a href="//www.51job.com/zhoukou/">周口</a></span> | Syntax not understood |
| 388 | <span><a href="//www.51job.com/zhumadian/">驻马店</a></span> | Syntax not understood |
| 389 | <span><a href="//www.51job.com/zunyi/">遵义</a></span> | Syntax not understood |
| 390 | </div> | Syntax not understood |
| 391 | </div> | Syntax not understood |
| 392 | <div class="clear"></div> | Syntax not understood |
| 393 | </div> | Syntax not understood |
| 394 | </div> | Syntax not understood |
| 395 | </div> | Syntax not understood |
| 397 | <div id="area_channel_layer_backdrop" class="layer_back_drop_class" style="z-index:999;position:absolute;z-index:999;left:0;top:0;display:none"></div> | Unknown directive |
| 398 | <script> | Syntax not understood |
| 400 | $(document).ready(function(){ | Syntax not understood |
| 401 | $(window).resize(function(){ | Syntax not understood |
| 402 | if(!$("#area_channel_layer").is(":hidden")) | Syntax not understood |
| 403 | { | Syntax not understood |
| 404 | setLayerPosition(); | Syntax not understood |
| 405 | } | Syntax not understood |
| 406 | }); | Syntax not understood |
| 407 | }); | Syntax not understood |
| 409 | window.areaChannelChangeTab = function(sName, oEvent) | Syntax not understood |
| 410 | { | Syntax not understood |
| 411 | $("#area_channel_layer_all").children().hide(); | Syntax not understood |
| 412 | $("#area_channel_layer_list").children().removeClass("on"); | Syntax not understood |
| 413 | $(oEvent).addClass("on"); | Syntax not understood |
| 414 | $("#area_channel_layer_all").children("div[name='area_channel_div_" + sName + "']").show(); | Syntax not understood |
| 415 | $("#area_channel_layer_backdrop").show(); | Syntax not understood |
| 416 | }; | Syntax not understood |
| 418 | window.openAreaChannelLayer = function() | Syntax not understood |
| 419 | { | Syntax not understood |
| 420 | setLayerPosition(); | Syntax not understood |
| 421 | $("#area_channel_layer,#area_channel_layer_backdrop").show(); | Syntax not understood |
| 422 | }; | Syntax not understood |
| 424 | window.setLayerPosition = function() | Syntax not understood |
| 425 | { | Syntax not understood |
| 426 | var dl = $(document).scrollLeft(); | Syntax not understood |
| 427 | var dt = $(document).scrollTop(); | Syntax not understood |
| 428 | var ww = $(document).width(); | Syntax not understood |
| 429 | var dwh = $(document).height(); | Syntax not understood |
| 430 | var wwh = $(window).height(); | Syntax not understood |
| 431 | var ow = $("#area_channel_layer").width(); | Syntax not understood |
| 432 | var oh = $("#area_channel_layer").height(); | Syntax not understood |
| 433 | var fLeft = (ww - ow) / 2 + dl; | Syntax not understood |
| 434 | var fTop = (wwh - oh) * 382 / 1000 + dt;//黄金比例 | Syntax not understood |
| 435 | $("#area_channel_layer").css({'left': Math.max(parseInt(fLeft), dl), 'top': Math.max(parseInt(fTop), dt)}); | Syntax not understood |
| 436 | $("#area_channel_layer_backdrop").css({'width': ww + 'px', 'height': dwh + 'px'}); | Syntax not understood |
| 437 | } | Syntax not understood |
| 438 | </script> <div class="nag" id="topIndex"> | Syntax not understood |
| 439 | <div class="in"> | Syntax not understood |
| 440 | <a href="//www.51job.com"><img class="logo" id="logo" width="100" height="40" src="//img03.51jobcdn.com/im/2022/logo/logo_100x40.png" alt="前程无忧"></a> | Syntax not understood |
| 441 | <img class="slogen" id="slogen" width="162" height="17" src="//img01.51jobcdn.com/im/2016/header/slogen.png?1544426366"> | Syntax not understood |
| 442 | <p class="nlink"> | Syntax not understood |
| 443 | <a class="" href="//www.51job.com/">首页</a> | Syntax not understood |
| 444 | <a class="" href="https://search.51job.com">职位搜索</a> | Unknown directive |
| 445 | <a class="" href="javascript:openAreaChannelLayer();">地区频道</a> | Unknown directive |
| 446 | <a class="" href="https://edu.51job.com" target="_blank">无忧学园</a> | Unknown directive |
| 447 | <a class="" href="https://mkt.51job.com/careerpost/default_res.php">职场资讯</a> | Unknown directive |
| 448 | <a class="" href="https://xy.51job.com/default-xs.php">校园招聘</a> | Unknown directive |
| 449 | </p> | Syntax not understood |
| 450 | </div> | Syntax not understood |
| 451 | </div> | Syntax not understood |
| 452 | <!-- nag end --> | Syntax not understood |
| 454 | <script language="javascript" src="//js.51jobcdn.com/in/js/2023/i/pctop-bundle.js?20230606"></script> | Syntax not understood |
| 455 | </div><div class="maincenter"> | Syntax not understood |
| 456 | <TABLE width="750" border="0" cellspacing="0" cellpadding="0" align="center" style="font-size:12px;"> | Unknown directive |
| 457 | <TR> | Syntax not understood |
| 458 | <TD colspan="3" height="60"><img src="//img01.51jobcdn.com/im/2009/hadn.gif" width="251" height="228"></TD> | Syntax not understood |
| 459 | <TD width="642" height="60"><font size="4" color="#993300">找不到该页</font><font face="Arial, Helvetica, sans-serif" size="4"> File | Syntax not understood |
| 460 | not found<br> | Syntax not understood |
| 461 | </font><br> | Syntax not understood |
| 462 | 您要查看的页已删除,或已改名,或暂时不可用。<br /> | Syntax not understood |
| 463 | <hr size="1"> | Syntax not understood |
| 464 | <br> | Syntax not understood |
| 465 | 请尝试以下操作:<br> | Unknown directive |
| 466 | <ul> | Syntax not understood |
| 467 | <li>如果您已经在地址栏中输入该网页的地址,请确认其拼写正确。 </li> | Syntax not understood |
| 468 | <li>打开 <a href="http://www.51job.com"><font color="#993300">www.51job.com </font></a>主页,然后查找指向您感兴趣信息的链接。 </li> | Unknown directive |
| 469 | <li>单击<a href="javascript:history.back(1)"><img src="//img04.51jobcdn.com/im/2009/back.bmp" border="0"></a><a href="javascript:history.back(1)"><font color="#993300">后退</font></a>按钮,尝试其他链接。</li> | Unknown directive |
| 470 | </ul> | Syntax not understood |
| 471 | </TD> | Syntax not understood |
| 472 | </TR> | Syntax not understood |
| 473 | </TABLE> | Syntax not understood |
| 474 | <br> | Syntax not understood |
| 475 | </div> | Syntax not understood |
| 476 | <div class="footer"> | Syntax not understood |
| 477 | <div class="in"> | Syntax not understood |
| 478 | <div class="nag"> | Syntax not understood |
| 479 | <div class="e e_first"> | Syntax not understood |
| 480 | <label>销售热线:</label>400-886-0051 027-87810888<br> | Syntax not understood |
| 481 | <label>客服热线:</label>400-620-5100<br> | Syntax not understood |
| 482 | <label>Email:</label><a href="mailto:club@51job.com" rel="external nofollow">club@51job.com</a>(个人)<br> | Unknown directive |
| 483 | <a href="mailto:hr@51job.com" rel="external nofollow">hr@51job.com</a>(公司) </div> | Unknown directive |
| 484 | <div class="e"> | Syntax not understood |
| 485 | <strong>简介</strong><br> | Syntax not understood |
| 486 | <a href="//www.51job.com/bo/AboutUs.php" target="_blank">关于我们</a><br> | Syntax not understood |
| 487 | <a href="//www.51job.com/bo/service.php" target="_blank">法律协议</a><br> | Syntax not understood |
| 488 | <a href="//www.51job.com/bo/private.php" target="_blank">隐私条款</a><br> | Syntax not understood |
| 489 | </div> | Syntax not understood |
| 490 | <div class="e"> | Syntax not understood |
| 491 | <strong>合作</strong><br> | Syntax not understood |
| 492 | <a href="//www.51job.com/bo/jobs/new_joinus.php" target="_blank">加入我们</a><br> | Syntax not understood |
| 493 | <a href="//www.51job.com/bo/contact.php" target="_blank">联系我们</a><br> | Syntax not understood |
| 494 | <a href="//www.51job.com/link.php" target="_blank">友情链接</a> | Syntax not understood |
| 495 | </div> | Syntax not understood |
| 496 | <div class="e"> | Syntax not understood |
| 497 | <strong>帮助</strong><br> | Syntax not understood |
| 498 | <a href="https://help.51job.com/home.html" target="_blank">帮助中心</a><br> | Unknown directive |
| 499 | <a href="https://help.51job.com/qa.html?from=b" target="_blank">常见问题</a><br> | Unknown directive |
| 500 | <a href="https://help.51job.com/guide.html?from=d" target="_blank">新手引导</a><br> | Unknown directive |
| 501 | <a href="https://help.51job.com/learnmore.html?from=d" target="_blank">防骗指南</a> | Unknown directive |
| 502 | </div> | Syntax not understood |
| 503 | <div class="e"> | Syntax not understood |
| 504 | <strong>导航</strong><br> | Syntax not understood |
| 505 | <a href="//www.51job.com/sitemap/site_Navigate.php" target="_blank">网站地图</a><br> | Syntax not understood |
| 506 | <a href="https://search.51job.com" target="_blank">职位搜索</a><br> | Unknown directive |
| 507 | <a href="//i.51job.com/resume/resume_center.php?lang=c" target="_blank">简历中心</a> | Syntax not understood |
| 508 | </div> | Syntax not understood |
| 510 | <div class="code c_first"> | Syntax not understood |
| 511 | <img width="80" height="80" src="//img03.51jobcdn.com/im/2022/logo/pc_footnav_app.png" alt="APP下载"> | Syntax not understood |
| 512 | <span><a href="http://app.51job.com/index.html">APP下载</a></span> | Unknown directive |
| 513 | </div> | Syntax not understood |
| 514 | <div class="code"> | Syntax not understood |
| 515 | <img width="80" height="80" src="//img06.51jobcdn.com/im/2022/logo/pc_footnav_wxmp.png" alt="微信服务号"> | Syntax not understood |
| 516 | <span>微信服务号</span> | Syntax not understood |
| 517 | </div> | Syntax not understood |
| 518 | <div class="clear"></div> | Syntax not understood |
| 519 | </div> | Syntax not understood |
| 521 | <p class="note nag"> | Syntax not understood |
| 522 | <span>未经51Job同意,不得转载本网站之所有招聘信息及作品 | 无忧工作网版权所有©1999-{{new Date().getFullYear() || '2026'}} | 互联网协议(IP)地址归属地:上海、无锡、济南</span> | Syntax not understood |
| 524 | </p> </div> | Syntax not understood |
| 525 | </div> | Syntax not understood |
| 526 | </body> | Syntax not understood |
| 527 | </html> | Syntax not understood |
To appear in search results, crawlers need access to your app.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.banner-and-func > div.login-card > div.card-header > img.title div.banner-and-func > div.login-card > div.card-header > img.title |
div.login-card > div.card-header > div.login-type > img div.login-card > div.card-header > div.login-type > img |
div.login-form > div.phone-login-form > div.login-explain > img div.login-form > div.phone-login-form > div.login-explain > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-img > img div.ad-card > a.sensors_exposure > div.ad-img > img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img div.ad-card > a.sensors_exposure > div.ad-hot > img.hot-img |
div#app-activityEntry > div.activity-entry > a > img div#app-activityEntry > div.activity-entry > a > img |
div.sidebar > div.qrcode > div.qr > img.close div.sidebar > div.qrcode > div.qr > img.close |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback