带你重新认识身边的前端工程狮合羽欠念什么

今天要介绍的是产品经理的小伙伴之一:前端开发工程师,虽然天天和他们打交道,但是想必大家都没有好好的“关心”过他们,今天我们一起来看看天天接触的前端工程师到底在忙些什么。现在移动互联网发展的这么快,前端

今天要介绍的是产品经理的小伙伴之一:前端开发工程师,虽然天天和他们打交道,但是想必大家都没有好好的“关心”过他们,今天我们一起来看看天天接触的前端工程师到底在忙些什么。

现在移动互联网发展的这么快,前端开发领域也越来越广,前端早已经告别了切图崽的时代,在web端、移动端(安卓、IOS)、Watch、小程序、公众号开发、混合app开发都能看到前端开发工程师的影子。

从狭义上讲,前端工程师使用 HTML、CSS、Javascript 等专业技能和工具将产品UI设计稿实现成网站产品,涵盖用户PC端、移动端网页,处理视觉和交互问题。

从广义上来讲,所有用户终端产品与视觉和交互有关的部分,都是前端工程师的专业领域。

简单的说,前端开发工程师日常工作是创建Web页面或移动页面等前端界面呈现给用户的过程,通过前端三大件HTML、CSS、Javascript以及衍生出来的各种技术、框架、解决方案,来实现互联网产品的用户界面交互 。

用户看到的每一个网页主要由三部分组成:结构( Structure) 、 表现( Presentation) 和行为( Behavior)。

HTML —— 结构, 决定网页的结构和内容(“是什么”);

CSS —— 表现( 样式) , 设定网页的表现样式(“什么样子”);

Javascript —— 行为, 控制网页的行为(“做什么”);

HTML、CSS、Javascript是前端开发中最基本也是最必须的三个技能。前端开发中,在页面的布局时, HTML将元素进行定义,CSS对展示的元素进行定位,再通过Javascript实现相应的效果和交互。接下来我们好好聊聊这三大件,知己知彼。

HTML是什么?

可以把HTML结构想象成一个没穿衣服的人。

HTML指超文本标记语言(HyperText Markup Language),“超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。前端开发利用HTML标签(Tag)来标记(Markup)网页中的文字。

(html代码示例)


上述代码是一个最基础HTML结构,一个网页的结构往往包括“头”和“主体”,头部的内容使用header标签标记,主要存放一些网页信息,例如网页标题、内容摘要、关键词等,头部内容也是SEO优化的重要对象。

主体部分用标签body标签标记,网页的内容全部放在body标签下,其内部又包含了很多代表不同含义的标签(如下表所示,只展示部分常用的)。

这些形形**的标签就构成了页面的内容,要注意的是整个网页的内容都要放在一个顶层标签html标签下。

标签

描述

定义锚。

定义粗体字。

定义文档的主体。

定义文档中的节。

定义定义列表。

to

定义 HTML 标题,可以改变标题的大小。

定义关于文档的信息。

定义 HTML 文档。

定义图像。

ta>

定义关于 HTML 文档的元信息。

定义段落。

定义文档中的节。

定义强调文本。

定义表格。

</p></td><td width="536" colspan="1" rowspan="1" align="" valign="middle"><p></p><p>定义文档的标题。</p></td></tr><tr ><td width="179" colspan="1" rowspan="1" align="" valign="middle"><p></p><p><ul></p></td><td width="536" colspan="1" rowspan="1" align="" valign="middle"><p></p><p>定义无序列表。</p></td></tr><tr ><td width="179" colspan="1" rowspan="1" align="" valign="middle"><p></p><p><video></p></td><td width="536" colspan="1" rowspan="1" align="" valign="middle"><p></p><p>定义视频。</p></td></tr></tbody><p>(常用标签)</p><p><br /></p><p>例如:我们点击某个链接,然后自动跳转一个新的页面,这过程都是a标签在起作用。还有看到的图片,就是img标签承载图片的数据源。</p><p>最后,告诉大家两个查看HTML源码的方法,好奇的伙伴可以去试试。</p><p>(1)打开浏览器,鼠标在页面上右击,然后点击“查看页面源码”;</p><p>(2)打开浏览器,按 “F12” 键;</p><p><img src="http://sta.88sw.top/wansry/skin/zsy/image/lazy.gif" class="lazy" original="https://ngbjimg.xy599.com/16392205166049f64dafb942.40575410.png"></p><br /><p>CSS是什么?</p><p>可以把CSS想象成给一个没穿衣服的人(HTML结构)化妆、穿衣服等,作用是让它变得美美的 。</p><p>CSS 指层叠样式表(Cascading Style Sheets),是一种将网页内容与网页样式分离的技术。我们经常会对一个网站评价道:这网站页面怎么这么乱;这网站看起来真大气,这背后都是受CSS影响;</p><p><strong >css可以做什么</p><p>(1) CSS主要用来设计网页的样式,美化网页;它不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。比如一开始文字显示是红色,我点击某个按钮后文字变黑色了。</p><p>(2) 你可以轻松地控制页面的布局,CSS 能够对网页中元素位置的排版进行像素级精确控制,因此我们能看到各式各样的布局风格。</p><p>(3) 在页面制作时采用CSS技术,可以有效地对页面的布局、字体、颜色、背景和其它效果实现更加精确的控制。例如通过文本属性,可以改变文本的颜色、字符间距,对齐文本,装饰文本,对文本进行缩进等等。</p><p>(4) 你可以将许多网页的风格格式同时更新,不用再一页一页地更新了。你可以将站点上所有的网页风格都使用一个CSS文件进行控制,只要修改这个CSS文件中相应的行,那么整个站点的所有页面都会随之发生变动。</p><p>(5) CSS在几乎所有的浏览器上都可以使用。</p><p><img src="http://sta.88sw.top/wansry/skin/zsy/image/lazy.gif" class="lazy" original="https://ngbjimg.xy599.com/10873441106049f64e6e33d6.71162926.png"></p><p>(CSS代码示例)</p><br /><p>JS是什么?</p><p>JS能够让HTML结构这个人"跳舞"、"跑步"等动作,主要目的是让"人"动起来。</p><p>JS(Javas<em></em>cript)是一种属于网络的高级脚本语言,已经被广泛用于Web应用开发,常用来为网页添加各式各样的动态功能,为用户提供更流畅美观的浏览效果。通常Javas<em></em>cript脚本是通过嵌入在HTML中来实现自身的功能的。</p><p>js可以做什么</p><p>(1) 使网页具有交互性,例如,banner轮播效果、手动Tab切换等效果;</p><p>(2) 可以处理表单,检验用户的输入,并提供及时反馈节省用户时间。例如,表单中要你输入电子邮箱而你却输入一个手机号,那么应该给你一个错误提醒。</p><p>(3) 还可以根据用户的操作,动态的创建页面。例如,发邮件时,添加附件操作。</p><p>(4) 设置coo<em></em>kie,coo<em></em>kie是存储在浏览器上的一些临时信息,例如你浏览过的网站地址,使用过的用户名。</p><p>(5) 跨平台特性,在绝大多数浏览器的支持下,可以在多种平台下运行(如Windows、Linux、Mac、Android、iOS等)。</p><p>(6)......等等</p><p><img src="http://sta.88sw.top/wansry/skin/zsy/image/lazy.gif" class="lazy" original="https://ngbjimg.xy599.com/14715123706049f64f318116.98880407.png"></p><p>(JS代码示例)</p><br /><p>前端三大件到此介绍完毕,不过现在有些其他语言的程序猿在讨论HTML、CSS、JS倒是算不算编程语言。</p><p><img src="http://sta.88sw.top/wansry/skin/zsy/image/lazy.gif" class="lazy" original="https://ngbjimg.xy599.com/12792047166049f64fe69a20.50138905.png"></p><p>全栈工程师</p><p>前端开发工程师在精进一步可以发展为全栈工程师,向T型人才或者π型人才发展。</p><p>全栈工程师熟悉多种开发语言,同时具备前端和后台开发能力,既能做前端(需要熟悉前端三大件以及Vue等各种前端技术),又能做后端(需要熟悉Node.js或Java或ASP.net或php或Go等),可以独自完成一个产品的前、后台开发工作。</p><p>简单了解下全栈工程师的技术栈有哪些:</p><p>(1) 前端技术:HTML/HTML5、CSS/CSS3、LESS/Javas<em></em>cript、jQuery、RequireJS、AngularJS、Vue等;</p><p>(2) 后端技术:node.js或Java、php等;</p><p>(3) 中间件:Nginx或Dubbo;</p><p>(4) 数据库:MySQL或MongoDB;</p><p>(5) 代码管理:git、svn;</p><p>(6) 构建工具:webpack、gulp、Jenkins;</p><p>(7) ......等等;</p><p>我们可以看到,对于全栈工程师来说,要活到老,学到老,其中最重要的属性,就是不同的思维方式和强大的学习能力。</p><p>最后,请重新认识一下你身边那个平平无奇的前端小伙伴吧!也可以把本篇文章分享给他看看,到底有几分像,哈哈。</p><p><img src="http://sta.88sw.top/wansry/skin/zsy/image/lazy.gif" class="lazy" original="https://ngbjimg.xy599.com/10414131460483fb96dcc10.09146632.jpeg"></p></div> <div class="entry-content">原文链接:<a href="http://www.wanshiruyi.cc/news/48449.html">http://www.wanshiruyi.cc/news/48449.html</a>,转载和复制请保留此链接。<br /> 以上就是关于<a href="http://www.wanshiruyi.cc/news/48449.html"><strong>带你重新认识身边的前端工程狮合羽欠念什么</strong></a>全部的内容,关注我们,带您了解更多相关内容。</div> <div class="entry-readmore"> <div class="entry-readmore-btn"></div> </div> <div class="entry-copyright"> <p> 特别提示:本信息由相关用户自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。 </p> </div> </div> <div class="entry-tag"> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E7%BD%91%E9%A1%B5.html" target="_blank" class="b">网页</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E5%AE%9A%E4%B9%89.html" target="_blank" class="b">定义</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E9%A1%B5%E9%9D%A2.html" target="_blank" class="b">页面</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E6%A0%87%E7%AD%BE.html" target="_blank" class="b">标签</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E5%B7%A5%E7%A8%8B%E5%B8%88.html" target="_blank" class="b">工程师</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E7%BB%93%E6%9E%84.html" target="_blank" class="b">结构</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E6%96%87%E6%A1%A3.html" target="_blank" class="b">文档</a> <a href="http://www.wanshiruyi.cc/news/search-htm-kw-%E9%83%BD%E6%98%AF.html" target="_blank" class="b">都是</a> </div> <br><br> <b><span>上一篇:<a href="http://www.wanshiruyi.cc/news/48448.html" title="刘强东曾经看好的书店,塌了过雪山草地歌词">刘强东曾经看好的书店,塌了过雪山草地歌词</a> </span> </b><br><br> <b><span>下一篇:<a href="http://www.wanshiruyi.cc/news/48450.html" title="《哪吒2》导演饺子要退网?流量狂欢该消停了!兽的组词">《哪吒2》导演饺子要退网?流量狂欢该消停了!兽的组词</a> </span></b> <div class="entry-bar"> <div class="entry-bar-inner clearfix"> <div class="author pull-left"> <a href="#" class="avatar j-user-card"> <img alt="fsxoyo" src="http://www.wanshiruyi.cc/api/avatar/show.php?username=admin&size=middle" class="avatar avatar-60 photo" height="60" width="60" /><span class="author-name">万事如意网</span></a> </div> <div class="info pull-right"> <div class="info-item share"> <a class="meta-item wechat" data-share="wechat" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-wechat"></use> </svg></i> </a> <a class="meta-item weibo" data-share="weibo" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-weibo"></use> </svg></i> </a> <a class="meta-item qq" data-share="qq" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-qq"></use> </svg></i> </a> <a class="meta-item qzone" data-share="qzone" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-qzone"></use> </svg></i> </a> </div> <div class="info-item act"> <a href="javascript:;" id="j-reading"><i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-article"></use> </svg></i></a> </div> </div> </div> </div> </div> <div class="entry-related-posts"> <h3 class="entry-related-title">相关推荐</h3> <ul class="entry-related cols-3 post-loop post-loop-default"> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/55579.html" title="一元一分24小时麻将群" target="_blank" rel="bookmark"><img src="http://img5.iyizhou.com/wansry/202504/04/17073640654.jpg"></a> <a class="item-category" href="http://www.wanshiruyi.cc/news/list-883.html" target="_blank">经营</a> </div> <div class="item-content"> <h2 class="item-title"> <a href="http://www.wanshiruyi.cc/news/55579.html" target="_blank" rel="bookmark">一元一分24小时麻将群</a></h2> <div class="item-excerpt"> <p>加V【tj005009】【tj182222】【cj42222】QQ:【371146023】1元1分正规红中麻将群,正规上下分模式,此群火爆正规,玩家都是来自全</p> </div> <div class="item-meta"> <span class="item-meta-li date">2025-04-04</span> <div class="item-meta-right"> <span class="item-meta-li views" title="阅读数"><i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-eye"></use> </svg></i>0</span> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/55419.html" title="特斯拉入华十年:褪去光环,开始 “交学费”泛泛之辈什么意思" target="_blank" rel="bookmark"><img src="http://www.wanshiruyi.cc/file/upload/202504/02/183403650.png.thumb.png"></a> <a class="item-category" href="http://www.wanshiruyi.cc/news/list-883.html" target="_blank">经营</a> </div> <div class="item-content"> <h2 class="item-title"> <a href="http://www.wanshiruyi.cc/news/55419.html" target="_blank" rel="bookmark">特斯拉入华十年:褪去光环,开始 “交学费”泛泛之辈什么意思</a></h2> <div class="item-excerpt"> <p>文/杜杰3月11日,美国总统特朗普,将自费8万美元购买的特斯拉Model S,开进了白宫。特朗普此举,绝非偶然随性,而是有着鲜明的主观意图,处处彰显出一种刻意托举的姿态 。特朗普也毫不讳言,希望他的购</p> </div> <div class="item-meta"> <span class="item-meta-li date">2025-04-02</span> <div class="item-meta-right"> <span class="item-meta-li views" title="阅读数"><i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-eye"></use> </svg></i>45</span> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/55418.html" title="揭秘!AI+内容生成视频详细流程,在小红书批量生成素材和快乐人生三句话" target="_blank" rel="bookmark"><img src="http://www.wanshiruyi.cc/file/upload/202504/02/183342860.png.thumb.png"></a> <a class="item-category" href="http://www.wanshiruyi.cc/news/list-883.html" target="_blank">经营</a> </div> <div class="item-content"> <h2 class="item-title"> <a href="http://www.wanshiruyi.cc/news/55418.html" target="_blank" rel="bookmark">揭秘!AI+内容生成视频详细流程,在小红书批量生成素材和快乐人生三句话</a></h2> <div class="item-excerpt"> <p>在AI大火的当下,有网感的人能看到各种各样的机会和可能,而行动力强的早已经利用AI实现涨粉变现。那么作为普通人的我们有没有入门简单,起号快,能有效变现,利用AI的可能呢?这个是真的有,我们来看一下普通</p> </div> <div class="item-meta"> <span class="item-meta-li date">2025-04-02</span> <div class="item-meta-right"> <span class="item-meta-li views" title="阅读数"><i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-eye"></use> </svg></i>30</span> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/55417.html" title="Echo的个人写作和运营公众号的故事布列瑟农歌词" target="_blank" rel="bookmark"><img src="http://www.wanshiruyi.cc/file/upload/202504/02/183340410.jpeg.thumb.jpeg"></a> <a class="item-category" href="http://www.wanshiruyi.cc/news/list-883.html" target="_blank">经营</a> </div> <div class="item-content"> <h2 class="item-title"> <a href="http://www.wanshiruyi.cc/news/55417.html" target="_blank" rel="bookmark">Echo的个人写作和运营公众号的故事布列瑟农歌词</a></h2> <div class="item-excerpt"> <p>2020年的第19篇原创文章,距离目标48篇还剩29篇~1.我什么时候开始写作17年的5月份,我入职了一个新的设计团队,新团队拥有完整的用户体验团队,一共30多个人,其中交互设计师有10个。刚入职的时</p> </div> <div class="item-meta"> <span class="item-meta-li date">2025-04-02</span> <div class="item-meta-right"> <span class="item-meta-li views" title="阅读数"><i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-eye"></use> </svg></i>41</span> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/55416.html" title="三星“李在镕之笑”背后的局苏紫紫干露露全套" target="_blank" rel="bookmark"><img src="http://www.wanshiruyi.cc/file/upload/202504/02/183338830.png.thumb.png"></a> <a class="item-category" href="http://www.wanshiruyi.cc/news/list-883.html" target="_blank">经营</a> </div> <div class="item-content"> <h2 class="item-title"> <a href="http://www.wanshiruyi.cc/news/55416.html" target="_blank" rel="bookmark">三星“李在镕之笑”背后的局苏紫紫干露露全套</a></h2> <div class="item-excerpt"> <p>文/郭楚妤不久前,中国发展高层论坛 2025 年年会(CDF)刚刚落下帷幕。本次年会围绕 “全面释放发展动能,共促全球经济稳定增长” 这一主题,吸引了全球各界目光,众多重磅嘉宾</p> </div> <div class="item-meta"> <span class="item-meta-li date">2025-04-02</span> <div class="item-meta-right"> <span class="item-meta-li views" title="阅读数"><i class="wpcom-icon wi"> <svg aria-hidden="true"> <use xlink:href="#wi-eye"></use> </svg></i>26</span> </div> </div> </div> </li> </ul> </div> </article> </main> <aside class="sidebar"> <div class="widget widget_profile"> <div class="profile-posts"> <h3 class="widget-title"><span>最近文章</span></h3> <ul> <li><a href="http://www.wanshiruyi.cc/news/list-894.html">[娱乐]</a> <a href="http://www.wanshiruyi.cc/news/55591.html" title="一元一分麻将群哪里进">一元一分麻将群哪里进</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-893.html">[体育]</a> <a href="http://www.wanshiruyi.cc/news/55590.html" title="24小时一元一分手机麻将群">24小时一元一分手机麻将群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-885.html">[国际]</a> <a href="http://www.wanshiruyi.cc/news/55589.html" title="手机一元一分真人麻将群">手机一元一分真人麻将群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-796.html">[建筑/建材]</a> <a href="http://www.wanshiruyi.cc/news/55588.html" title="上下分一元一分红中麻将群">上下分一元一分红中麻将群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-795.html">[机械设备]</a> <a href="http://www.wanshiruyi.cc/news/55587.html" title="不用到处找手机红中麻将群这里有">不用到处找手机红中麻将群这里有</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-889.html">[科技]</a> <a href="http://www.wanshiruyi.cc/news/55586.html" title="一元一分手机跑得快群">一元一分手机跑得快群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-829.html">[其他未分类]</a> <a href="http://www.wanshiruyi.cc/news/55585.html" title="24小时一元一分红中麻将群">24小时一元一分红中麻将群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-825.html">[工艺品/礼品]</a> <a href="http://www.wanshiruyi.cc/news/55584.html" title="哪里有一元一分红中麻将群">哪里有一元一分红中麻将群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-889.html">[科技]</a> <a href="http://www.wanshiruyi.cc/news/55583.html" title="线上真人一元一分麻将群">线上真人一元一分麻将群</a></li> <li><a href="http://www.wanshiruyi.cc/news/list-889.html">[科技]</a> <a href="http://www.wanshiruyi.cc/news/55582.html" title="哪里找一元一分红中麻将群">哪里找一元一分红中麻将群</a></li> </ul> </div> </div> <div class="widget widget_lastest_products"> <a href="/" target="_blank"> <img src="http://sta.88sw.top/wansry/skin/zsy/image/gg1.jpg" alt="万事如意网" width="100%" height="auto"> </a> </div> <div class="widget widget_post_hot"> <h3 class="widget-title"><span>图文推荐</span></h3> <ul> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/51620.html" title="体验线上免押j一元一分红中麻将群"><img src="http://www.wanshiruyi.cc/file/upload/202503/11/170230930.jpg.thumb.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/51620.html" title="体验线上免押j一元一分红中麻将群">体验线上免押j一元一分红中麻将群</a></p><p class="item-date">2025-03-11</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/51618.html" title="一元一分跑得快群炸金花群牛牛群"><img src="http://www.wanshiruyi.cc/file/upload/202503/11/170136860.png.thumb.png"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/51618.html" title="一元一分跑得快群炸金花群牛牛群">一元一分跑得快群炸金花群牛牛群</a></p><p class="item-date">2025-03-11</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/51463.html" title="真人牛牛 金花 跑得快 血战 24小时 一元一分"><img src="http://www.wanshiruyi.cc/file/upload/202503/11/100155820.jpg.thumb.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/51463.html" title="真人牛牛 金花 跑得快 血战 24小时 一元一分">真人牛牛 金花 跑得快 血战 24小时 一元一分</a></p><p class="item-date">2025-03-11</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/51393.html" title="十年老平台正规红中麻将一元一分群怎么加"><img src="http://www.wanshiruyi.cc/file/upload/202503/11/030205670.jpg.thumb.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/51393.html" title="十年老平台正规红中麻将一元一分群怎么加">十年老平台正规红中麻将一元一分群怎么加</a></p><p class="item-date">2025-03-11</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/51392.html" title="真人金花 牛牛 血战麻将 跑得快 一元一分玩的来"><img src="http://www.wanshiruyi.cc/file/upload/202503/11/030124770.jpg.thumb.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/51392.html" title="真人金花 牛牛 血战麻将 跑得快 一元一分玩的来">真人金花 牛牛 血战麻将 跑得快 一元一分玩的来</a></p><p class="item-date">2025-03-11</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/51304.html" title="一元一分牛牛群炸金花群"><img src="http://www.wanshiruyi.cc/file/upload/202503/10/170208690.jpg.thumb.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/51304.html" title="一元一分牛牛群炸金花群">一元一分牛牛群炸金花群</a></p><p class="item-date">2025-03-10</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/34656.html" title="这样做,你才能驱动业务腾讯公益图标怎么免费点亮"><img src="http://www.wanshiruyi.cc/file/upload/202411/25/183225910.png.thumb.png"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/34656.html" title="这样做,你才能驱动业务腾讯公益图标怎么免费点亮">这样做,你才能驱动业务腾讯公益图标怎么免费点亮</a></p><p class="item-date">2024-11-25</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/34652.html" title="全网疯抢“周杰伦”日不落 歌词"><img src="http://www.wanshiruyi.cc/file/upload/202411/25/183214250.png.thumb.png"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/34652.html" title="全网疯抢“周杰伦”日不落 歌词">全网疯抢“周杰伦”日不落 歌词</a></p><p class="item-date">2024-11-25</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/29753.html" title=""><img src="http://picsw.88sw.top/wansry/202410/24/222356981.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/29753.html" title=""></a></p><p class="item-date">2024-10-24</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/42.html" title="手机QQ发30亿红包“约”支付宝春节一战"><img src="http://www.wanshiruyi.cc/file/upload/201702/06/111525681.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/42.html" title="手机QQ发30亿红包“约”支付宝春节一战">手机QQ发30亿红包“约”支付宝春节一战</a></p><p class="item-date">2015-02-07</p></div> </li> </ul> </div> <div class="widget widget_post_hot"> <h3 class="widget-title"><span>全站热门</span></h3> <ul> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/297.html" title="智能手环中的贵族,华为手环B3上手体验"><img src="http://www.wanshiruyi.cc/file/upload/201702/235435lmyxaegtnmka5lnu.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/297.html" title="智能手环中的贵族,华为手环B3上手体验">智能手环中的贵族,华为手环B3上手体验</a></p><p class="item-date">2017-02-02</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/3.html" title="红包成兵家必争之地,泛滥有隐忧需发力多元"><img src="http://www.wanshiruyi.cc/file/upload/201702/08/142649331.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/3.html" title="红包成兵家必争之地,泛滥有隐忧需发力多元">红包成兵家必争之地,泛滥有隐忧需发力多元</a></p><p class="item-date">2015-02-07</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/299.html" title="颜值之王,美得令人窒息 荣耀8真机评测"><img src="http://www.wanshiruyi.cc/file/upload/201702/170411co3h015oh5pnjj3o.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/299.html" title="颜值之王,美得令人窒息 荣耀8真机评测">颜值之王,美得令人窒息 荣耀8真机评测</a></p><p class="item-date">2017-02-02</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/300.html" title="再次刷新千元机的认识,魅蓝3S详细点评"><img src="http://www.wanshiruyi.cc/file/upload/201702/110808b46v9vvvpkvpazap.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/300.html" title="再次刷新千元机的认识,魅蓝3S详细点评">再次刷新千元机的认识,魅蓝3S详细点评</a></p><p class="item-date">2017-02-02</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/296.html" title="售价只有汪峰耳机一半,音质却差不多"><img src="http://www.wanshiruyi.cc/file/upload/201702/110719nno16xee418w31x8.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/296.html" title="售价只有汪峰耳机一半,音质却差不多">售价只有汪峰耳机一半,音质却差不多</a></p><p class="item-date">2017-02-02</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/47.html" title="奇虎360买下域名360.com:谈判3年 耗资1.06"><img src="http://www.wanshiruyi.cc/file/upload/201702/08/142913501.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/47.html" title="奇虎360买下域名360.com:谈判3年 耗资1.06">奇虎360买下域名360.com:谈判3年 耗资1.06</a></p><p class="item-date">2015-02-07</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/105.html" title="淘宝有假货,O2O模式或将成解决方案"><img src="http://www.wanshiruyi.cc/file/upload/201702/06/111649221.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/105.html" title="淘宝有假货,O2O模式或将成解决方案">淘宝有假货,O2O模式或将成解决方案</a></p><p class="item-date">2015-02-07</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/42.html" title="手机QQ发30亿红包“约”支付宝春节一战"><img src="http://www.wanshiruyi.cc/file/upload/201702/06/111525681.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/42.html" title="手机QQ发30亿红包“约”支付宝春节一战">手机QQ发30亿红包“约”支付宝春节一战</a></p><p class="item-date">2015-02-07</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/107.html" title="苏宁借阿里风波搞营销:谁挠了用户的心"><img src="http://www.wanshiruyi.cc/file/upload/201702/06/112012361.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/107.html" title="苏宁借阿里风波搞营销:谁挠了用户的心">苏宁借阿里风波搞营销:谁挠了用户的心</a></p><p class="item-date">2015-02-07</p></div> </li> <li class="item"><div class="item-img"> <a class="item-img-inner" href="http://www.wanshiruyi.cc/news/41.html" title="百度重组:不要走地太远,忘了为什么出发"><img src="http://www.wanshiruyi.cc/file/upload/201702/06/111816321.jpg"></a></div><div class="item-content"><p class="item-title"><a href="http://www.wanshiruyi.cc/news/41.html" title="百度重组:不要走地太远,忘了为什么出发">百度重组:不要走地太远,忘了为什么出发</a></p><p class="item-date">2015-02-07</p></div> </li> </ul> </div> </aside> </div> </div> <script type="text/javascript" src="http://sta.88sw.top/wansry/file/script/content.js"></script><footer class="footer"> <div class="container" style="margin: auto;clear: both;text-align: center;"> <div class="footer-col footer-col-copy" style="margin: 0;padding: 0;"> <div class="copyright"> <a href="http://www.wanshiruyi.cc/">网站首页</a>  |  <a href="http://www.wanshiruyi.cc/about/vip.html"><span style="color:#FF0000">VIP套餐介绍</span></a>  |  <a href="http://www.wanshiruyi.cc/about/index.html">关于我们</a>  |  <a href="http://www.b2b3.top/contact.html"><span style="color:#FF0000">联系方式</span></a>  |  <a href="http://www.wanshiruyi.cc/about/copyright.html">版权隐私</a>  |  <a href="http://www.wanshiruyi.cc/sitemaps.xml">SITEMAPS</a>  |  <a href="http://www.wanshiruyi.cc/sitemap/">网站地图</a>  |  <a href="http://www.wanshiruyi.cc/ad/">广告服务</a>  |  <a href="https://beian.miit.gov.cn/" target="_blank">晋ICP备2022001766号</a><br/><br/> 特别提示:本站信息由相关用户自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。[浏览本网推荐采用IE8.0及以上浏览器]<br/>免责声明:本站部分资源来自互联网或网友发布,所有数据仅供参考,如有不当、有误、侵犯隐私,请联系我们及时删除或纠正,本站不承担任何法律责任!<br/><a href="http://www.wanshiruyi.cc">万事如意网</a> <a href="http://www.wanshiruyi.cc">wanshiruyi.cc</a> 2010-2023<script type="text/javascript" src="http://pub.88sw.top/001js/qq.js"></script> </div> </div> </div> </footer> <div class="action action-style-0 action-color-1 action-pos-1" style="bottom:120px;"> <div class="action-item j-share"> <i class="wpcom-icon wi action-item-icon"><svg aria-hidden="true"><use xlink:href="#wi-share"></use></svg></i> <div class="action-item-inner share-more-wrap clearfix" style="margin-top: -108px;"> <h4 class="share-more-title">分享到:</h4> <a class="action-share-item" data-share="weibo" target="_blank" rel="noopener" href="https://service.weibo.com/share/share.php?url=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F&title=JustNews%20-%20%E5%8F%88%E4%B8%80%E4%B8%AAWPCOM%E7%AB%99%E7%82%B9&pic=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2Fwp-content%2Fuploads%2Fsites%2F8%2F2021%2F03%2F2021032602420738.jpg&appkey=&searchPic=true"><i class="wpcom-icon wi wi-weibo"><svg aria-hidden="true"><use xlink:href="#wi-weibo"></use></svg></i> 新浪微博</a> <a class="action-share-item" data-share="wechat" rel="noopener" href="javascript:" target=""><i class="wpcom-icon wi wi-wechat"><svg aria-hidden="true"><use xlink:href="#wi-wechat"></use></svg></i> 微信<span class="share-wx-wrap"><span class="j-share-qrcode"><canvas width="256" height="256"></canvas></span><span>微信扫码分享</span></span></a> <a class="action-share-item" data-share="qq" target="_blank" rel="noopener" href="https://connect.qq.com/widget/shareqq/index.html?url=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F&title=JustNews%20-%20%E5%8F%88%E4%B8%80%E4%B8%AAWPCOM%E7%AB%99%E7%82%B9&source=JustNews&desc=JustNews%E4%B8%BB%E9%A2%98%E4%B8%93%E4%B8%BA%E5%8D%9A%E5%AE%A2%E3%80%81%E8%87%AA%E5%AA%92%E4%BD%93%E3%80%81%E8%B5%84%E8%AE%AF%E7%B1%BB%E7%9A%84%E7%BD%91%E7%AB%99%E8%AE%BE%E8%AE%A1%E5%BC%80%E5%8F%91%EF%BC%8C%E8%87%AA%E9%80%82%E5%BA%94%E5%85%BC%E5%AE%B9%E6%89%8B%E6%9C%BA%E3%80%81%E5%B9%B3%E6%9D%BF%E8%AE%BE%E5%A4%87%EF%BC%8C%E6%94%AF%E6%8C%81%E5%89%8D%E7%AB%AF%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83%EF%BC%8C%E5%8F%AF%E4%BB%A5%E5%89%8D%E7%AB%AF%E5%8F%91%E5%B8%83%2F%E6%8A%95%E7%A8%BF%E6%96%87%E7%AB%A0%EF%BC%8C%E5%90%8C%E6%97%B6%E4%B8%BB%E9%A2%98%E6%94%AF%E6%8C%81%E4%B8%93%E9%A2%98%E5%8A%9F%E8%83%BD%EF%BC%8C%E5%8F%AF%E4%BB%A5%E6%B7%BB%E5%8A%A0%E6%96%87%E7%AB%A0%E4%B8%93%E9%A2%98%E3%80%82&pics=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2Fwp-content%2Fuploads%2Fsites%2F8%2F2021%2F03%2F2021032602420738.jpg&summary="JustNews%E4%B8%BB%E9%A2%98%E4%B8%93%E4%B8%BA%E5%8D%9A%E5%AE%A2%E3%80%81%E8%87%AA%E5%AA%92%E4%BD%93%E3%80%81%E8%B5%84%E8%AE%AF%E7%B1%BB%E7%9A%84%E7%BD%91%E7%AB%99%E8%AE%BE%E8%AE%A1%E5%BC%80%E5%8F%91%EF%BC%8C%E8%87%AA%E9%80%82%E5%BA%94%E5%85%BC%E5%AE%B9%E6%89%8B%E6%9C%BA%E3%80%81%E5%B9%B3%E6%9D%BF%E8%AE%BE%E5%A4%87%EF%BC%8C%E6%94%AF%E6%8C%81%E5%89%8D%E7%AB%AF%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83%EF%BC%8C%E5%8F%AF%E4%BB%A5%E5%89%8D%E7%AB%AF%E5%8F%91%E5%B8%83%2F%E6%8A%95%E7%A8%BF%E6%96%87%E7%AB%A0%EF%BC%8C%E5%90%8C%E6%97%B6%E4%B8%BB%E9%A2%98%E6%94%AF%E6%8C%81%E4%B8%93%E9%A2%98%E5%8A%9F%E8%83%BD%EF%BC%8C%E5%8F%AF%E4%BB%A5%E6%B7%BB%E5%8A%A0%E6%96%87%E7%AB%A0%E4%B8%93%E9%A2%98%E3%80%82""><i class="wpcom-icon wi wi-qq"><svg aria-hidden="true"><use xlink:href="#wi-qq"></use></svg></i> QQ好友</a> <a class="action-share-item" data-share="qzone" target="_blank" rel="noopener" href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F&title=JustNews%20-%20%E5%8F%88%E4%B8%80%E4%B8%AAWPCOM%E7%AB%99%E7%82%B9&desc=JustNews%E4%B8%BB%E9%A2%98%E4%B8%93%E4%B8%BA%E5%8D%9A%E5%AE%A2%E3%80%81%E8%87%AA%E5%AA%92%E4%BD%93%E3%80%81%E8%B5%84%E8%AE%AF%E7%B1%BB%E7%9A%84%E7%BD%91%E7%AB%99%E8%AE%BE%E8%AE%A1%E5%BC%80%E5%8F%91%EF%BC%8C%E8%87%AA%E9%80%82%E5%BA%94%E5%85%BC%E5%AE%B9%E6%89%8B%E6%9C%BA%E3%80%81%E5%B9%B3%E6%9D%BF%E8%AE%BE%E5%A4%87%EF%BC%8C%E6%94%AF%E6%8C%81%E5%89%8D%E7%AB%AF%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83%EF%BC%8C%E5%8F%AF%E4%BB%A5%E5%89%8D%E7%AB%AF%E5%8F%91%E5%B8%83%2F%E6%8A%95%E7%A8%BF%E6%96%87%E7%AB%A0%EF%BC%8C%E5%90%8C%E6%97%B6%E4%B8%BB%E9%A2%98%E6%94%AF%E6%8C%81%E4%B8%93%E9%A2%98%E5%8A%9F%E8%83%BD%EF%BC%8C%E5%8F%AF%E4%BB%A5%E6%B7%BB%E5%8A%A0%E6%96%87%E7%AB%A0%E4%B8%93%E9%A2%98%E3%80%82&summary=JustNews%E4%B8%BB%E9%A2%98%E4%B8%93%E4%B8%BA%E5%8D%9A%E5%AE%A2%E3%80%81%E8%87%AA%E5%AA%92%E4%BD%93%E3%80%81%E8%B5%84%E8%AE%AF%E7%B1%BB%E7%9A%84%E7%BD%91%E7%AB%99%E8%AE%BE%E8%AE%A1%E5%BC%80%E5%8F%91%EF%BC%8C%E8%87%AA%E9%80%82%E5%BA%94%E5%85%BC%E5%AE%B9%E6%89%8B%E6%9C%BA%E3%80%81%E5%B9%B3%E6%9D%BF%E8%AE%BE%E5%A4%87%EF%BC%8C%E6%94%AF%E6%8C%81%E5%89%8D%E7%AB%AF%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83%EF%BC%8C%E5%8F%AF%E4%BB%A5%E5%89%8D%E7%AB%AF%E5%8F%91%E5%B8%83%2F%E6%8A%95%E7%A8%BF%E6%96%87%E7%AB%A0%EF%BC%8C%E5%90%8C%E6%97%B6%E4%B8%BB%E9%A2%98%E6%94%AF%E6%8C%81%E4%B8%93%E9%A2%98%E5%8A%9F%E8%83%BD%EF%BC%8C%E5%8F%AF%E4%BB%A5%E6%B7%BB%E5%8A%A0%E6%96%87%E7%AB%A0%E4%B8%93%E9%A2%98%E3%80%82&site=JustNews&pics=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2Fwp-content%2Fuploads%2Fsites%2F8%2F2021%2F03%2F2021032602420738.jpg"><i class="wpcom-icon wi wi-qzone"><svg aria-hidden="true"><use xlink:href="#wi-qzone"></use></svg></i> QQ空间</a> <a class="action-share-item" data-share="douban" target="_blank" rel="noopener" href="https://shuo.douban.com/!service/share?href=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F&name=JustNews%20-%20%E5%8F%88%E4%B8%80%E4%B8%AAWPCOM%E7%AB%99%E7%82%B9&text=JustNews%E4%B8%BB%E9%A2%98%E4%B8%93%E4%B8%BA%E5%8D%9A%E5%AE%A2%E3%80%81%E8%87%AA%E5%AA%92%E4%BD%93%E3%80%81%E8%B5%84%E8%AE%AF%E7%B1%BB%E7%9A%84%E7%BD%91%E7%AB%99%E8%AE%BE%E8%AE%A1%E5%BC%80%E5%8F%91%EF%BC%8C%E8%87%AA%E9%80%82%E5%BA%94%E5%85%BC%E5%AE%B9%E6%89%8B%E6%9C%BA%E3%80%81%E5%B9%B3%E6%9D%BF%E8%AE%BE%E5%A4%87%EF%BC%8C%E6%94%AF%E6%8C%81%E5%89%8D%E7%AB%AF%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83%EF%BC%8C%E5%8F%AF%E4%BB%A5%E5%89%8D%E7%AB%AF%E5%8F%91%E5%B8%83%2F%E6%8A%95%E7%A8%BF%E6%96%87%E7%AB%A0%EF%BC%8C%E5%90%8C%E6%97%B6%E4%B8%BB%E9%A2%98%E6%94%AF%E6%8C%81%E4%B8%93%E9%A2%98%E5%8A%9F%E8%83%BD%EF%BC%8C%E5%8F%AF%E4%BB%A5%E6%B7%BB%E5%8A%A0%E6%96%87%E7%AB%A0%E4%B8%93%E9%A2%98%E3%80%82&image=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2Fwp-content%2Fuploads%2Fsites%2F8%2F2021%2F03%2F2021032602420738.jpg&starid=0&aid=0&style=11"><i class="wpcom-icon wi wi-douban"><svg aria-hidden="true"><use xlink:href="#wi-douban"></use></svg></i> 豆瓣</a> <a class="action-share-item" data-share="linkedin" target="_blank" rel="noopener" href="https://www.linkedin.com/shareArticle?mini=true&ro=true&title=JustNews%20-%20%E5%8F%88%E4%B8%80%E4%B8%AAWPCOM%E7%AB%99%E7%82%B9&url=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F&summary=JustNews%E4%B8%BB%E9%A2%98%E4%B8%93%E4%B8%BA%E5%8D%9A%E5%AE%A2%E3%80%81%E8%87%AA%E5%AA%92%E4%BD%93%E3%80%81%E8%B5%84%E8%AE%AF%E7%B1%BB%E7%9A%84%E7%BD%91%E7%AB%99%E8%AE%BE%E8%AE%A1%E5%BC%80%E5%8F%91%EF%BC%8C%E8%87%AA%E9%80%82%E5%BA%94%E5%85%BC%E5%AE%B9%E6%89%8B%E6%9C%BA%E3%80%81%E5%B9%B3%E6%9D%BF%E8%AE%BE%E5%A4%87%EF%BC%8C%E6%94%AF%E6%8C%81%E5%89%8D%E7%AB%AF%E7%94%A8%E6%88%B7%E4%B8%AD%E5%BF%83%EF%BC%8C%E5%8F%AF%E4%BB%A5%E5%89%8D%E7%AB%AF%E5%8F%91%E5%B8%83%2F%E6%8A%95%E7%A8%BF%E6%96%87%E7%AB%A0%EF%BC%8C%E5%90%8C%E6%97%B6%E4%B8%BB%E9%A2%98%E6%94%AF%E6%8C%81%E4%B8%93%E9%A2%98%E5%8A%9F%E8%83%BD%EF%BC%8C%E5%8F%AF%E4%BB%A5%E6%B7%BB%E5%8A%A0%E6%96%87%E7%AB%A0%E4%B8%93%E9%A2%98%E3%80%82&source=JustNews&armin=armin"><i class="wpcom-icon wi wi-linkedin"><svg aria-hidden="true"><use xlink:href="#wi-linkedin"></use></svg></i> LinkedIn</a> <a class="action-share-item" data-share="facebook" target="_blank" rel="noopener" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F"><i class="wpcom-icon wi wi-facebook"><svg aria-hidden="true"><use xlink:href="#wi-facebook"></use></svg></i> Facebook</a> <a class="action-share-item" data-share="twitter" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?text=JustNews%20-%20%E5%8F%88%E4%B8%80%E4%B8%AAWPCOM%E7%AB%99%E7%82%B9&url=http%3A%2F%2Fdemo.wpcom.cn%2Fjustnews%2F&via=http%3A%2F%2Fdemo.wpcom.cn"><i class="wpcom-icon wi wi-twitter"><svg aria-hidden="true"><use xlink:href="#wi-twitter"></use></svg></i> Twitter</a> </div></div><div class="action-item gotop j-top active"> <i class="wpcom-icon wi action-item-icon"><svg aria-hidden="true"><use xlink:href="#wi-arrow-up-2"></use></svg></i></div></div> <script src=http://sta.88sw.top/wansry/skin/zsy/js/8957c.js></script> <script src=http://sta.88sw.top/wansry/skin/zsy/js/fsxoyo.js></script> <script src=http://sta.88sw.top/wansry/skin/zsy/js/e6954.js></script> <script type="text/javascript"> </script> <script type="text/javascript" src="https://pub.88sw.top/001js/bdts.js"></script></body> </html>