石头也能生成PDF?这行代码直接把HTML怼成PDF,太狠了

发布时间:2026/7/28 1:30:16
石头也能生成PDF?这行代码直接把HTML怼成PDF,太狠了 it is a title Stone Giant ...Stone Giant...以一团石头...由2017编写, 类型为“文本/Java”, .主体, 关于那: {.主体的}进行构建。这个例子将页面body中的元素渲染成并插入到body中。jsPDFjsPDF库可以用于浏览器端生成PDF。文字生成PDF使用方法如下var的doc等于new的jsPDF, 其默认a4大小, 处于竖直方向, 有着mm单位, 而这个doc要添加文本‘PDF’, 在位置为10, 10的地方进行添加, 之后doc要保存成名为a4.pdf。图片生成PDF, 真是这样。使用方法如下咱们要生成pdf的话, 得把转化的那些元素添加到jsPDF实例里头, 它还有添加html的功能呢, 不过有些元素没办法生成在pdf里, 所以可以采用 jsPDF这样的方式把页面转成pdf。要这么做的话, 得先遍历页面的元素, 接着进行渲染生成, 随后呢就把图片格式添加到jsPDF实例, 就这样得出pdf了。 jsPDF 单页将demo1的例子修改下var();.(){(.(body,(:{:(){//返回图片, 参数: 图片格式和清晰度, 其中到是相关系数, 而var(.image/jpeg,1.0);//方向默认竖直, 尺寸, 格式为a4。595.28,841.89要是页面内容按照a4比例进行转化而后高度超出了A4纸自身的高度, 那所生成的pdf会呈现怎样的状况呢, 它会进行分页吗?你可以试试验证一下自己的想法。jsPDF给出了一项颇具实用价值的API, , 我们能够借由pdf., 去增添一页pdf, 随后借助pdf...., 将图片给予这页pdf用以展示。那么我们如何确定哪里分页这个问题进行回答是比较容易的, 我们能够去设置一个, 超越这个高度的相关内容放置到下一页的pdf当中。把思路梳理一下, 把html页面内容制作为图片, 借助把第一页图片放进pdf里超出一页内容, 经由添加pdf页数, 随后再凭借把下一页图片放入pdf中。嗯很好巴特难道没有发现问题吗该方法得以实现的前提在于, 我们能够依据, 先把整页内容所产生的图片划分成相对应的小图片, 接着, 一个萝卜一个坑地, 逐页接入。啥? 思考一下咱们的是怎样来的, 无需往上拉, 径直瞧下面:这里的称作body的东西, 是那个将要被生成的元素对象, 每一个元素都单独生成一个如此一来, 我们必定要按照一页一页的方式来进行, 换而言之就是。你认为存在可能性吗, 我感觉并非切实可行, 依循着这样的思路去获取网页页面上处于不同地方的DOM元素, 接着借助(逗号)来予以处理, 暂且先不说是否能够恰好于每一个位置精准地寻觅到一个DOM元素, 就算已然寻觅到了, 如此这般进行操作难道不会让人觉得疲惫吗。累的话 可以看看下面这种方法。多页我所给出的思路是, 我们仅仅生成一个, 没错就是一个, 而转化元素乃是你要转变成pdf内容的母元素, 在这篇demo当中此母元素就是body了其余部分保持不变, 同样是当内容超过一页的时候, 然后, 只不过这里所添加的是同一个。当然, 如此这般去做, 只会呈现出多页重复的pdf, 那么究竟该如何达成正确的分页显示呢。实际上, 是以jsPDF的两点为主要依据的:虽每一页pdf之上呈现的图片是一样的, 然而我们借由对图片位置予以调整, 生出了分页的那种错觉。就以第二页来说, 把竖直方向里的偏移设定为 -841.89也就是一张a4纸的高度, 又鉴于超出a4纸高度范畴的图片不会呈现, 故而第二页展现了图片于竖直方向上。841.89,1682.78范围内的内容这就得到了分页的效果以此类推。还是看代码吧595.28,841.89html页面所生成的在pdf里图片的宽为var 595.28, 其高为var 592.28除以星号, var是image/jpeg且比例为1.0, new jsPDF用来创建一个新的名为pdf的对象, 其页面设置为pt单位的a4纸张。要区分两个高度, 一个是html页面的实际高度, 另一个是生成pdf的页面高度841.89。若内容没有超过pdf一页显示的范围就无需进行分页, 若未超过则pdf添加图片, 图片格式为JPEG, 起始位置为0,0, 宽高参数分别为两个var, 表示无需修改内容或修改比例。否则, 当超过时, 就不断循环在新的页面添加图片, 每次添加时垂直位置为当前页面高度, 水平位置始终为0, 宽高参数同样为两个var, 添加完后减去图片高度和841.89, 为避免存在空白页且当剩余高度大于0时, 就新起一页。最后, pdf保存为指定名称的pdf文件。两边要留出边距。M.Share.Wmoph.cN/Article/details/642160.shtmlM.Share.Wmoph.cN/Article/details/750927.shtmlM.Share.Wmoph.cN/Article/details/968484.shtmlM.Share.Wmoph.cN/Article/details/122064.shtmlM.Share.Wmoph.cN/Article/details/085014.shtmlM.Share.Wmoph.cN/Article/details/548231.shtmlM.Share.Wmoph.cN/Article/details/869906.shtmlM.Share.Wmoph.cN/Article/details/195885.shtmlM.Share.Wmoph.cN/Article/details/642996.shtmlM.Share.Wmoph.cN/Article/details/229043.shtmlM.Share.Wmoph.cN/Article/details/532902.shtmlM.Share.Wmoph.cN/Article/details/489602.shtmlM.Share.Wmoph.cN/Article/details/057328.shtmlM.Share.Wmoph.cN/Article/details/623795.shtmlM.Share.Wmoph.cN/Article/details/288688.shtmlM.Share.Wmoph.cN/Article/details/437843.shtmlM.Share.Wmoph.cN/Article/details/372668.shtmlM.Share.Wmoph.cN/Article/details/317266.shtmlM.Share.Wmoph.cN/Article/details/232048.shtmlM.Share.Wmoph.cN/Article/details/275820.shtmlM.Share.Wmoph.cN/Article/details/584857.shtmlM.Share.Wmoph.cN/Article/details/056095.shtmlM.Share.Wmoph.cN/Article/details/787017.shtmlM.Share.Wmoph.cN/Article/details/854136.shtmlM.Share.Wmoph.cN/Article/details/421419.shtmlM.Share.Wmoph.cN/Article/details/015715.shtmlM.Share.Wmoph.cN/Article/details/591923.shtmlM.Share.Wmoph.cN/Article/details/804847.shtmlM.Share.Wmoph.cN/Article/details/292663.shtmlM.Share.Wmoph.cN/Article/details/108146.shtmlM.Share.Wmoph.cN/Article/details/870878.shtmlM.Share.Wmoph.cN/Article/details/220458.shtmlM.Share.Wmoph.cN/Article/details/621856.shtmlM.Share.Wmoph.cN/Article/details/633119.shtmlM.Share.Wmoph.cN/Article/details/776449.shtmlM.Share.Wmoph.cN/Article/details/159678.shtmlM.Share.Wmoph.cN/Article/details/220545.shtmlM.Share.Wmoph.cN/Article/details/702559.shtmlM.Share.Wmoph.cN/Article/details/873817.shtmlM.Share.Wmoph.cN/Article/details/687786.shtmlM.Share.Wmoph.cN/Article/details/219101.shtmlM.Share.Wmoph.cN/Article/details/382120.shtmlM.Share.Wmoph.cN/Article/details/938008.shtmlM.Share.Wmoph.cN/Article/details/607064.shtmlM.Share.Wmoph.cN/Article/details/200260.shtmlM.Share.Wmoph.cN/Article/details/846457.shtmlM.Share.Wmoph.cN/Article/details/582896.shtmlM.Share.Wmoph.cN/Article/details/747956.shtmlM.Share.Wmoph.cN/Article/details/086774.shtmlM.Share.Wmoph.cN/Article/details/558512.shtmlM.Share.Wmoph.cN/Article/details/119465.shtmlM.Share.Wmoph.cN/Article/details/646661.shtmlM.Share.Wmoph.cN/Article/details/564005.shtmlM.Share.Wmoph.cN/Article/details/225855.shtmlM.Share.Wmoph.cN/Article/details/704974.shtmlM.Share.Wmoph.cN/Article/details/172378.shtmlM.Share.Wmoph.cN/Article/details/411868.shtmlM.Share.Wmoph.cN/Article/details/585029.shtmlM.Share.Wmoph.cN/Article/details/147040.shtmlM.Share.Wmoph.cN/Article/details/001024.shtmlM.Share.Wmoph.cN/Article/details/957822.shtmlM.Share.Wmoph.cN/Article/details/952851.shtmlM.Share.Wmoph.cN/Article/details/030779.shtmlM.Share.Wmoph.cN/Article/details/080228.shtmlM.Share.Wmoph.cN/Article/details/142910.shtmlM.Share.Wmoph.cN/Article/details/755110.shtmlM.Share.Wmoph.cN/Article/details/311625.shtmlM.Share.Wmoph.cN/Article/details/334982.shtmlM.Share.Wmoph.cN/Article/details/204557.shtmlM.Share.Wmoph.cN/Article/details/355743.shtmlM.Share.Wmoph.cN/Article/details/470277.shtmlM.Share.Wmoph.cN/Article/details/347986.shtmlM.Share.Wmoph.cN/Article/details/315829.shtmlM.Share.Wmoph.cN/Article/details/565785.shtmlM.Share.Wmoph.cN/Article/details/055300.shtmlM.Share.Wmoph.cN/Article/details/707258.shtmlM.Share.Wmoph.cN/Article/details/540018.shtmlM.Share.Wmoph.cN/Article/details/906295.shtmlM.Share.Wmoph.cN/Article/details/778900.shtmlM.Share.Wmoph.cN/Article/details/115601.shtmlM.Share.Wmoph.cN/Article/details/553417.shtmlM.Share.Wmoph.cN/Article/details/896583.shtmlM.Share.Wmoph.cN/Article/details/101141.shtmlM.Share.Wmoph.cN/Article/details/391696.shtmlM.Share.Wmoph.cN/Article/details/365696.shtmlM.Share.Wmoph.cN/Article/details/745777.shtmlM.Share.Wmoph.cN/Article/details/575170.shtmlM.Share.Wmoph.cN/Article/details/829585.shtmlM.Share.Wmoph.cN/Article/details/348699.shtmlM.Share.Wmoph.cN/Article/details/352395.shtmlM.Share.Wmoph.cN/Article/details/686659.shtmlM.Share.Wmoph.cN/Article/details/432258.shtmlM.Share.Wmoph.cN/Article/details/431103.shtmlM.Share.Wmoph.cN/Article/details/465040.shtmlM.Share.Wmoph.cN/Article/details/627559.shtmlM.Share.Wmoph.cN/Article/details/320581.shtmlM.Share.Wmoph.cN/Article/details/266977.shtmlM.Share.Wmoph.cN/Article/details/116252.shtmlM.Share.Wmoph.cN/Article/details/558244.shtmlM.Share.Wmoph.cN/Article/details/914814.shtmlM.Share.Wmoph.cN/Article/details/392790.shtmlM.Share.Wmoph.cN/Article/details/727574.shtmlM.Share.Wmoph.cN/Article/details/633294.shtmlM.Share.Wmoph.cN/Article/details/729146.shtmlM.Share.Wmoph.cN/Article/details/704756.shtmlM.Share.Wmoph.cN/Article/details/636979.shtmlM.Share.Wmoph.cN/Article/details/168351.shtmlM.Share.Wmoph.cN/Article/details/117580.shtmlM.Share.Wmoph.cN/Article/details/155896.shtmlM.Share.Wmoph.cN/Article/details/571403.shtmlM.Share.Wmoph.cN/Article/details/422102.shtmlM.Share.Wmoph.cN/Article/details/132062.shtmlM.Share.Wmoph.cN/Article/details/436691.shtmlM.Share.Wmoph.cN/Article/details/469134.shtmlM.Share.Wmoph.cN/Article/details/181957.shtmlM.Share.Wmoph.cN/Article/details/662567.shtmlM.Share.Wmoph.cN/Article/details/535555.shtmlM.Share.Wmoph.cN/Article/details/588633.shtmlM.Share.Wmoph.cN/Article/details/036362.shtmlM.Share.Wmoph.cN/Article/details/509190.shtmlM.Share.Wmoph.cN/Article/details/917883.shtmlM.Share.Wmoph.cN/Article/details/111408.shtmlM.Share.Wmoph.cN/Article/details/076874.shtmlM.Share.Wmoph.cN/Article/details/897950.shtmlM.Share.Wmoph.cN/Article/details/580645.shtmlM.Share.Wmoph.cN/Article/details/549698.shtmlM.Share.Wmoph.cN/Article/details/992905.shtmlM.Share.Wmoph.cN/Article/details/389102.shtmlM.Share.Wmoph.cN/Article/details/014255.shtmlM.Share.Wmoph.cN/Article/details/537914.shtmlM.Share.Wmoph.cN/Article/details/482443.shtmlM.Share.Wmoph.cN/Article/details/077158.shtmlM.Share.Wmoph.cN/Article/details/954992.shtmlM.Share.Wmoph.cN/Article/details/181649.shtmlM.Share.Wmoph.cN/Article/details/286100.shtmlM.Share.Wmoph.cN/Article/details/274182.shtmlM.Share.Wmoph.cN/Article/details/805795.shtmlM.Share.Wmoph.cN/Article/details/770186.shtmlM.Share.Wmoph.cN/Article/details/527334.shtmlM.Share.Wmoph.cN/Article/details/033024.shtmlM.Share.Wmoph.cN/Article/details/812821.shtmlM.Share.Wmoph.cN/Article/details/126880.shtmlM.Share.Wmoph.cN/Article/details/271651.shtmlM.Share.Wmoph.cN/Article/details/975172.shtmlM.Share.Wmoph.cN/Article/details/271047.shtmlM.Share.Wmoph.cN/Article/details/352588.shtmlM.Share.Wmoph.cN/Article/details/092174.shtmlM.Share.Wmoph.cN/Article/details/306284.shtmlM.Share.Wmoph.cN/Article/details/029861.shtmlM.Share.Wmoph.cN/Article/details/139145.shtmlM.Share.Wmoph.cN/Article/details/732138.shtmlM.Share.Wmoph.cN/Article/details/814759.shtmlM.Share.Wmoph.cN/Article/details/232212.shtmlM.Share.Wmoph.cN/Article/details/632019.shtmlM.Share.Wmoph.cN/Article/details/603273.shtmlM.Share.Wmoph.cN/Article/details/842338.shtmlM.Share.Wmoph.cN/Article/details/315869.shtmlM.Share.Wmoph.cN/Article/details/066309.shtmlM.Share.Wmoph.cN/Article/details/724208.shtmlM.Share.Wmoph.cN/Article/details/193744.shtmlM.Share.Wmoph.cN/Article/details/557625.shtmlM.Share.Wmoph.cN/Article/details/979357.shtmlM.Share.Wmoph.cN/Article/details/169905.shtmlM.Share.Wmoph.cN/Article/details/427425.shtmlM.Share.Wmoph.cN/Article/details/549726.shtmlM.Share.Wmoph.cN/Article/details/452036.shtmlM.Share.Wmoph.cN/Article/details/818157.shtmlM.Share.Wmoph.cN/Article/details/841998.shtmlM.Share.Wmoph.cN/Article/details/500425.shtmlM.Share.Wmoph.cN/Article/details/749987.shtmlM.Share.Wmoph.cN/Article/details/973389.shtmlM.Share.Wmoph.cN/Article/details/531569.shtmlM.Share.Wmoph.cN/Article/details/834817.shtmlM.Share.Wmoph.cN/Article/details/071789.shtmlM.Share.Wmoph.cN/Article/details/070009.shtmlM.Share.Wmoph.cN/Article/details/888853.shtmlM.Share.Wmoph.cN/Article/details/371142.shtmlM.Share.Wmoph.cN/Article/details/203822.shtmlM.Share.Wmoph.cN/Article/details/155078.shtmlM.Share.Wmoph.cN/Article/details/636693.shtmlM.Share.Wmoph.cN/Article/details/231137.shtmlM.Share.Wmoph.cN/Article/details/335994.shtmlM.Share.Wmoph.cN/Article/details/901594.shtmlM.Share.Wmoph.cN/Article/details/792317.shtmlM.Share.Wmoph.cN/Article/details/914234.shtmlM.Share.Wmoph.cN/Article/details/409500.shtmlM.Share.Wmoph.cN/Article/details/808306.shtmlM.Share.Wmoph.cN/Article/details/679821.shtmlM.Share.Wmoph.cN/Article/details/970268.shtmlM.Share.Wmoph.cN/Article/details/373300.shtmlM.Share.Wmoph.cN/Article/details/779255.shtmlM.Share.Wmoph.cN/Article/details/120047.shtmlM.Share.Wmoph.cN/Article/details/738780.shtmlM.Share.Wmoph.cN/Article/details/460084.shtmlM.Share.Wmoph.cN/Article/details/849606.shtmlM.Share.Wmoph.cN/Article/details/915656.shtmlM.Share.Wmoph.cN/Article/details/833169.shtmlM.Share.Wmoph.cN/Article/details/652365.shtmlM.Share.Wmoph.cN/Article/details/686235.shtmlM.Share.Wmoph.cN/Article/details/443162.shtmlM.Share.Wmoph.cN/Article/details/591917.shtmlM.Share.Wmoph.cN/Article/details/113820.shtmlM.Share.Wmoph.cN/Article/details/959047.shtmlM.Share.Wmoph.cN/Article/details/919429.shtmlM.Share.Wmoph.cN/Article/details/993947.shtmlM.Share.Wmoph.cN/Article/details/303336.shtmlM.Share.Wmoph.cN/Article/details/571317.shtmlM.Share.Wmoph.cN/Article/details/209932.shtmlM.Share.Wmoph.cN/Article/details/725491.shtmlM.Share.Wmoph.cN/Article/details/764147.shtmlM.Share.Wmoph.cN/Article/details/829082.shtmlM.Share.Wmoph.cN/Article/details/089869.shtmlM.Share.Wmoph.cN/Article/details/624468.shtmlM.Share.Wmoph.cN/Article/details/282652.shtmlM.Share.Wmoph.cN/Article/details/409918.shtmlM.Share.Wmoph.cN/Article/details/444143.shtmlM.Share.Wmoph.cN/Article/details/037648.shtmlM.Share.Wmoph.cN/Article/details/857907.shtmlM.Share.Wmoph.cN/Article/details/345403.shtmlM.Share.Wmoph.cN/Article/details/835302.shtmlM.Share.Wmoph.cN/Article/details/592575.shtmlM.Share.Wmoph.cN/Article/details/952187.shtmlM.Share.Wmoph.cN/Article/details/681878.shtmlM.Share.Wmoph.cN/Article/details/597481.shtmlM.Share.Wmoph.cN/Article/details/800732.shtmlM.Share.Wmoph.cN/Article/details/432497.shtmlM.Share.Wmoph.cN/Article/details/786541.shtmlM.Share.Wmoph.cN/Article/details/991054.shtmlM.Share.Wmoph.cN/Article/details/646866.shtmlM.Share.Wmoph.cN/Article/details/564581.shtmlM.Share.Wmoph.cN/Article/details/206405.shtmlM.Share.Wmoph.cN/Article/details/750699.shtmlM.Share.Wmoph.cN/Article/details/449250.shtmlM.Share.Wmoph.cN/Article/details/318905.shtmlM.Share.Wmoph.cN/Article/details/837739.shtmlM.Share.Wmoph.cN/Article/details/554916.shtmlM.Share.Wmoph.cN/Article/details/031568.shtmlM.Share.Wmoph.cN/Article/details/378097.shtmlM.Share.Wmoph.cN/Article/details/331860.shtmlM.Share.Wmoph.cN/Article/details/255769.shtmlM.Share.Wmoph.cN/Article/details/423831.shtmlM.Share.Wmoph.cN/Article/details/229934.shtmlM.Share.Wmoph.cN/Article/details/086691.shtmlM.Share.Wmoph.cN/Article/details/763377.shtmlM.Share.Wmoph.cN/Article/details/701743.shtmlM.Share.Wmoph.cN/Article/details/368067.shtmlM.Share.Wmoph.cN/Article/details/992200.shtmlM.Share.Wmoph.cN/Article/details/788564.shtmlM.Share.Wmoph.cN/Article/details/824343.shtmlM.Share.Wmoph.cN/Article/details/598322.shtmlM.Share.Wmoph.cN/Article/details/691686.shtmlM.Share.Wmoph.cN/Article/details/287414.shtmlM.Share.Wmoph.cN/Article/details/407961.shtmlM.Share.Wmoph.cN/Article/details/253947.shtmlM.Share.Wmoph.cN/Article/details/957892.shtmlM.Share.Wmoph.cN/Article/details/481379.shtmlM.Share.Wmoph.cN/Article/details/336418.shtmlM.Share.Wmoph.cN/Article/details/350212.shtmlM.Share.Wmoph.cN/Article/details/248017.shtmlM.Share.Wmoph.cN/Article/details/112758.shtmlM.Share.Wmoph.cN/Article/details/936709.shtmlM.Share.Wmoph.cN/Article/details/875289.shtmlM.Share.Wmoph.cN/Article/details/008852.shtmlM.Share.Wmoph.cN/Article/details/448627.shtmlM.Share.Wmoph.cN/Article/details/828884.shtmlM.Share.Wmoph.cN/Article/details/637763.shtmlM.Share.Wmoph.cN/Article/details/061870.shtmlM.Share.Wmoph.cN/Article/details/630397.shtmlM.Share.Wmoph.cN/Article/details/790086.shtmlM.Share.Wmoph.cN/Article/details/244703.shtmlM.Share.Wmoph.cN/Article/details/622751.shtmlM.Share.Wmoph.cN/Article/details/695303.shtmlM.Share.Wmoph.cN/Article/details/854108.shtmlM.Share.Wmoph.cN/Article/details/690122.shtmlM.Share.Wmoph.cN/Article/details/316827.shtmlM.Share.Wmoph.cN/Article/details/580130.shtmlM.Share.Wmoph.cN/Article/details/329729.shtmlM.Share.Wmoph.cN/Article/details/123769.shtmlM.Share.Wmoph.cN/Article/details/902469.shtmlM.Share.Wmoph.cN/Article/details/229066.shtmlM.Share.Wmoph.cN/Article/details/922873.shtmlM.Share.Wmoph.cN/Article/details/789466.shtmlM.Share.Wmoph.cN/Article/details/396472.shtmlM.Share.Wmoph.cN/Article/details/988553.shtmlM.Share.Wmoph.cN/Article/details/275316.shtmlM.Share.Wmoph.cN/Article/details/258546.shtmlM.Share.Wmoph.cN/Article/details/099621.shtmlM.Share.Wmoph.cN/Article/details/776480.shtmlM.Share.Wmoph.cN/Article/details/319797.shtmlM.Share.Wmoph.cN/Article/details/904937.shtmlM.Share.Wmoph.cN/Article/details/227400.shtmlM.Share.Wmoph.cN/Article/details/364141.shtmlM.Share.Wmoph.cN/Article/details/819947.shtmlM.Share.Wmoph.cN/Article/details/561846.shtmlM.Share.Wmoph.cN/Article/details/292184.shtmlM.Share.Wmoph.cN/Article/details/226443.shtmlM.Share.Wmoph.cN/Article/details/914686.shtmlM.Share.Wmoph.cN/Article/details/373423.shtmlM.Share.Wmoph.cN/Article/details/577732.shtmlM.Share.Wmoph.cN/Article/details/982710.shtmlM.Share.Wmoph.cN/Article/details/815892.shtmlM.Share.Wmoph.cN/Article/details/990280.shtmlM.Share.Wmoph.cN/Article/details/492972.shtmlM.Share.Wmoph.cN/Article/details/610368.shtmlM.Share.Wmoph.cN/Article/details/207594.shtmlM.Share.Wmoph.cN/Article/details/452833.shtmlM.Share.Wmoph.cN/Article/details/317970.shtmlM.Share.Wmoph.cN/Article/details/864940.shtmlM.Share.Wmoph.cN/Article/details/382987.shtmlM.Share.Wmoph.cN/Article/details/092542.shtmlM.Share.Wmoph.cN/Article/details/422157.shtmlM.Share.Wmoph.cN/Article/details/742807.shtmlM.Share.Wmoph.cN/Article/details/191208.shtmlM.Share.Wmoph.cN/Article/details/234879.shtmlM.Share.Wmoph.cN/Article/details/557726.shtmlM.Share.Wmoph.cN/Article/details/485838.shtmlM.Share.Wmoph.cN/Article/details/813934.shtmlM.Share.Wmoph.cN/Article/details/332763.shtmlM.Share.Wmoph.cN/Article/details/489601.shtmlM.Share.Wmoph.cN/Article/details/514021.shtmlM.Share.Wmoph.cN/Article/details/699894.shtmlM.Share.Wmoph.cN/Article/details/986663.shtmlM.Share.Wmoph.cN/Article/details/340771.shtmlM.Share.Wmoph.cN/Article/details/942062.shtmlM.Share.Wmoph.cN/Article/details/081249.shtmlM.Share.Wmoph.cN/Article/details/493899.shtmlM.Share.Wmoph.cN/Article/details/251251.shtmlM.Share.Wmoph.cN/Article/details/643514.shtmlM.Share.Wmoph.cN/Article/details/381960.shtmlM.Share.Wmoph.cN/Article/details/778617.shtmlM.Share.Wmoph.cN/Article/details/785941.shtmlM.Share.Wmoph.cN/Article/details/179578.shtmlM.Share.Wmoph.cN/Article/details/228100.shtmlM.Share.Wmoph.cN/Article/details/221439.shtmlM.Share.Wmoph.cN/Article/details/415128.shtmlM.Share.Wmoph.cN/Article/details/048099.shtmlM.Share.Wmoph.cN/Article/details/356274.shtmlM.Share.Wmoph.cN/Article/details/229876.shtmlM.Share.Wmoph.cN/Article/details/896910.shtmlM.Share.Wmoph.cN/Article/details/598523.shtmlM.Share.Wmoph.cN/Article/details/207206.shtmlM.Share.Wmoph.cN/Article/details/592802.shtmlM.Share.Wmoph.cN/Article/details/760167.shtmlM.Share.Wmoph.cN/Article/details/084774.shtmlM.Share.Wmoph.cN/Article/details/792388.shtmlM.Share.Wmoph.cN/Article/details/605196.shtmlM.Share.Wmoph.cN/Article/details/999663.shtmlM.Share.Wmoph.cN/Article/details/569321.shtmlM.Share.Wmoph.cN/Article/details/681209.shtmlM.Share.Wmoph.cN/Article/details/560549.shtmlM.Share.Wmoph.cN/Article/details/481421.shtmlM.Share.Wmoph.cN/Article/details/901792.shtmlM.Share.Wmoph.cN/Article/details/608092.shtmlM.Share.Wmoph.cN/Article/details/882076.shtml