JSOUP初探

JSOUP是偶然看到的一个处理HTML的JAVA 类库,其官方网址是:http://jsoup.org/

1、编写相关的试用程序(只需要在工程中引用jsoup-1.3.3.jar即可):

  1. importjava.io.File;
  2. importjava.io.IOException;
  3. importorg.jsoup.Jsoup;
  4. importorg.jsoup.nodes.Document;
  5. importorg.jsoup.select.Elements;
  6. publicclassTest{
  7. publicstaticvoidmain(String[]args){
  8. Testt=newTest();
  9. t.parseFile();
  10. }
  11. publicvoidparseString(){
  12. Stringhtml="<html><head><title>blog</title></head><bodyοnlοad='test()'><p>ParsedHTMLintoadoc.</p></body></html>";
  13. Documentdoc=Jsoup.parse(html);
  14. System.out.println(doc);
  15. Elementses=doc.body().getAllElements();
  16. System.out.println(es.attr("onload"));
  17. System.out.println(es.select("p"));
  18. }
  19. publicvoidparseUrl(){
  20. try{
  21. Documentdoc=Jsoup.connect("http://www.baidu.com/").get();
  22. Elementshrefs=doc.select("a[href]");
  23. System.out.println(hrefs);
  24. System.out.println("------------------");
  25. System.out.println(hrefs.select("[href^=http]"));
  26. }catch(IOExceptione){
  27. e.printStackTrace();
  28. }
  29. }
  30. publicvoidparseFile(){
  31. try{
  32. Fileinput=newFile("input.html");
  33. Documentdoc=Jsoup.parse(input,"UTF-8");
  34. //提取出所有的编号
  35. Elementscodes=doc.body().select("td[title^=IA]>a[href^=javascript:view]");
  36. System.out.println(codes);
  37. System.out.println("------------------");
  38. System.out.println(codes.html());
  39. }catch(IOExceptione){
  40. e.printStackTrace();
  41. }
  42. }
  43. }
import java.io.File;
import java.io.IOException;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;

public class Test {
	public static void main(String[] args) {
		Test t = new Test();
		t.parseFile();
	}

	public void parseString() {
		String html = "<html><head><title>blog</title></head><body οnlοad='test()'><p>Parsed HTML into a doc.</p></body></html>";
		Document doc = Jsoup.parse(html);
		System.out.println(doc);
		Elements es = doc.body().getAllElements();
		System.out.println(es.attr("onload"));
		System.out.println(es.select("p"));
	}

	public void parseUrl() {
		try {
			Document doc = Jsoup.connect("http://www.baidu.com/").get();
			Elements hrefs = doc.select("a[href]");
			System.out.println(hrefs);
			System.out.println("------------------");
			System.out.println(hrefs.select("[href^=http]"));
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public void parseFile() {
		try {
			File input = new File("input.html");
			Document doc = Jsoup.parse(input, "UTF-8");
			// 提取出所有的编号
			Elements codes = doc.body().select("td[title^=IA] > a[href^=javascript:view]");
			System.out.println(codes);
			System.out.println("------------------");
			System.out.println(codes.html());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}


2、parseString的输出:

  1. <html>
  2. <head>
  3. <title>blog</title>
  4. </head>
  5. <bodyοnlοad="test()">
  6. <p>ParsedHTMLintoadoc.</p>
  7. </body>
  8. </html>
  9. test()
  10. <p>ParsedHTMLintoadoc.</p>
<html>
 <head>
  <title>blog</title>
 </head>
 <body οnlοad="test()">
  <p>Parsed HTML into a doc.</p>
 </body>
</html>
test()

<p>Parsed HTML into a doc.</p>


3、parseUrl的输出:

  1. <ahref="/gaoji/preferences.html">设置</a>
  2. <ahref="http://passport.baidu.com/?login&tpl=mn">登录</a>
  3. <ahref="http://news.baidu.com">新闻</a>
  4. <ahref="http://tieba.baidu.com">贴吧</a>
  5. <ahref="http://zhidao.baidu.com">知道</a>
  6. <ahref="http://mp3.baidu.com">MP3</a>
  7. <ahref="http://image.baidu.com">图片</a>
  8. <ahref="http://video.baidu.com">视频</a>
  9. <ahref="http://map.baidu.com">地图</a>
  10. <ahref="#"name="ime_hw">手写</a>
  11. <ahref="#"name="ime_py">拼音</a>
  12. <ahref="#"name="ime_cl">关闭</a>
  13. <ahref="http://hi.baidu.com">空间</a>
  14. <ahref="http://baike.baidu.com">百科</a>
  15. <ahref="http://www.hao123.com">hao123</a>
  16. <ahref="/more/">更多>></a>
  17. <aid="st"οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')"href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
  18. <ahref="http://e.baidu.com/?refer=888">加入百度推广</a>
  19. <ahref="http://top.baidu.com">搜索风云榜</a>
  20. <ahref="http://home.baidu.com">关于百度</a>
  21. <ahref="http://ir.baidu.com">AboutBaidu</a>
  22. <ahref="/duty/">使用百度前必读</a>
  23. <ahref="http://www.miibeian.gov.cn"target="_blank">京ICP证030173号</a>
  24. ------------------
  25. <ahref="http://passport.baidu.com/?login&tpl=mn">登录</a>
  26. <ahref="http://news.baidu.com">新闻</a>
  27. <ahref="http://tieba.baidu.com">贴吧</a>
  28. <ahref="http://zhidao.baidu.com">知道</a>
  29. <ahref="http://mp3.baidu.com">MP3</a>
  30. <ahref="http://image.baidu.com">图片</a>
  31. <ahref="http://video.baidu.com">视频</a>
  32. <ahref="http://map.baidu.com">地图</a>
  33. <ahref="http://hi.baidu.com">空间</a>
  34. <ahref="http://baike.baidu.com">百科</a>
  35. <ahref="http://www.hao123.com">hao123</a>
  36. <aid="st"οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')"href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
  37. <ahref="http://e.baidu.com/?refer=888">加入百度推广</a>
  38. <ahref="http://top.baidu.com">搜索风云榜</a>
  39. <ahref="http://home.baidu.com">关于百度</a>
  40. <ahref="http://ir.baidu.com">AboutBaidu</a>
  41. <ahref="http://www.miibeian.gov.cn"target="_blank">京ICP证030173号</a>
<a href="/gaoji/preferences.html">设置</a>
<a href="http://passport.baidu.com/?login&tpl=mn">登录</a>
<a href="http://news.baidu.com">新闻</a>
<a href="http://tieba.baidu.com">贴吧</a>
<a href="http://zhidao.baidu.com">知道</a>
<a href="http://mp3.baidu.com">MP3</a>
<a href="http://image.baidu.com">图片</a>
<a href="http://video.baidu.com">视频</a>
<a href="http://map.baidu.com">地图</a>

<a href="#" name="ime_hw">手写</a>

<a href="#" name="ime_py">拼音</a>

<a href="#" name="ime_cl">关闭</a>
<a href="http://hi.baidu.com">空间</a>
<a href="http://baike.baidu.com">百科</a>
<a href="http://www.hao123.com">hao123</a>
<a href="/more/">更多>></a>
<a id="st" οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')" href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
<a href="http://e.baidu.com/?refer=888">加入百度推广</a>
<a href="http://top.baidu.com">搜索风云榜</a>
<a href="http://home.baidu.com">关于百度</a>
<a href="http://ir.baidu.com">About Baidu</a>
<a href="/duty/">使用百度前必读</a>
<a href="http://www.miibeian.gov.cn" target="_blank">京ICP证030173号</a>
------------------
<a href="http://passport.baidu.com/?login&tpl=mn">登录</a>
<a href="http://news.baidu.com">新闻</a>
<a href="http://tieba.baidu.com">贴吧</a>
<a href="http://zhidao.baidu.com">知道</a>
<a href="http://mp3.baidu.com">MP3</a>
<a href="http://image.baidu.com">图片</a>
<a href="http://video.baidu.com">视频</a>
<a href="http://map.baidu.com">地图</a>
<a href="http://hi.baidu.com">空间</a>
<a href="http://baike.baidu.com">百科</a>
<a href="http://www.hao123.com">hao123</a>
<a id="st" οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')" href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
<a href="http://e.baidu.com/?refer=888">加入百度推广</a>
<a href="http://top.baidu.com">搜索风云榜</a>
<a href="http://home.baidu.com">关于百度</a>
<a href="http://ir.baidu.com">About Baidu</a>
<a href="http://www.miibeian.gov.cn" target="_blank">京ICP证030173号</a>


3、parseFile的输出:

  1. <ahref="javascript:view('67530','67530','0');">IA100908-002</a>
  2. <ahref="javascript:view('67529','67529','0');">IA100908-001</a>
  3. <ahref="javascript:view('67544','67544','0');">IA100908-016</a>
  4. <ahref="javascript:view('67364','67364','0');">IA100903-008</a>
  5. <ahref="javascript:view('67363','67363','0');">IA100903-007</a>
  6. <ahref="javascript:view('66104','66104','0');">IA100710-013</a>
  7. <ahref="javascript:view('57916','57916','0');">IA100515-013</a>
  8. <ahref="javascript:view('56962','56962','0');">IA100430-022</a>
  9. <ahref="javascript:view('66958','66958','0');">IA100830-001</a>
  10. <ahref="javascript:view('66319','66319','0');">IA100713-003</a>
  11. <ahref="javascript:view('66317','66317','0');">IA100713-001</a>
  12. <ahref="javascript:view('66321','66321','0');">IA100713-005</a>
  13. <ahref="javascript:view('66967','66967','0');">IA100830-010</a>
  14. <ahref="javascript:view('66999','66999','0');">IA100831-001</a>
  15. <ahref="javascript:view('67377','67377','0');">IA100904-004</a>
  16. <ahref="javascript:view('67378','67378','0');">IA100904-005</a>
  17. <ahref="javascript:view('3271','3271','0');">IA080115-031</a>
  18. ------------------
  19. IA100908-002
  20. IA100908-001
  21. IA100908-016
  22. IA100903-008
  23. IA100903-007
  24. IA100710-013
  25. IA100515-013
  26. IA100430-022
  27. IA100830-001
  28. IA100713-003
  29. IA100713-001
  30. IA100713-005
  31. IA100830-010
  32. IA100831-001
  33. IA100904-004
  34. IA100904-005
  35. IA080115-031
<a href="javascript:view('67530','67530','0');">IA100908-002</a>

<a href="javascript:view('67529','67529','0');">IA100908-001</a>

<a href="javascript:view('67544','67544','0');">IA100908-016</a>

<a href="javascript:view('67364','67364','0');">IA100903-008</a>

<a href="javascript:view('67363','67363','0');">IA100903-007</a>

<a href="javascript:view('66104','66104','0');">IA100710-013</a>

<a href="javascript:view('57916','57916','0');">IA100515-013</a>

<a href="javascript:view('56962','56962','0');">IA100430-022</a>

<a href="javascript:view('66958','66958','0');">IA100830-001</a>

<a href="javascript:view('66319','66319','0');">IA100713-003</a>

<a href="javascript:view('66317','66317','0');">IA100713-001</a>

<a href="javascript:view('66321','66321','0');">IA100713-005</a>

<a href="javascript:view('66967','66967','0');">IA100830-010</a>

<a href="javascript:view('66999','66999','0');">IA100831-001</a>

<a href="javascript:view('67377','67377','0');">IA100904-004</a>

<a href="javascript:view('67378','67378','0');">IA100904-005</a>

<a href="javascript:view('3271','3271','0');">IA080115-031</a>
------------------
IA100908-002
IA100908-001
IA100908-016
IA100903-008
IA100903-007
IA100710-013
IA100515-013
IA100430-022
IA100830-001
IA100713-003
IA100713-001
IA100713-005
IA100830-010
IA100831-001
IA100904-004
IA100904-005
IA080115-031


补充下,input.html的基本结果如图:

JSOUP是偶然看到的一个处理HTML的JAVA 类库,其官方网址是:http://jsoup.org/

1、编写相关的试用程序(只需要在工程中引用jsoup-1.3.3.jar即可):

  1. importjava.io.File;
  2. importjava.io.IOException;
  3. importorg.jsoup.Jsoup;
  4. importorg.jsoup.nodes.Document;
  5. importorg.jsoup.select.Elements;
  6. publicclassTest{
  7. publicstaticvoidmain(String[]args){
  8. Testt=newTest();
  9. t.parseFile();
  10. }
  11. publicvoidparseString(){
  12. Stringhtml="<html><head><title>blog</title></head><bodyοnlοad='test()'><p>ParsedHTMLintoadoc.</p></body></html>";
  13. Documentdoc=Jsoup.parse(html);
  14. System.out.println(doc);
  15. Elementses=doc.body().getAllElements();
  16. System.out.println(es.attr("onload"));
  17. System.out.println(es.select("p"));
  18. }
  19. publicvoidparseUrl(){
  20. try{
  21. Documentdoc=Jsoup.connect("http://www.baidu.com/").get();
  22. Elementshrefs=doc.select("a[href]");
  23. System.out.println(hrefs);
  24. System.out.println("------------------");
  25. System.out.println(hrefs.select("[href^=http]"));
  26. }catch(IOExceptione){
  27. e.printStackTrace();
  28. }
  29. }
  30. publicvoidparseFile(){
  31. try{
  32. Fileinput=newFile("input.html");
  33. Documentdoc=Jsoup.parse(input,"UTF-8");
  34. //提取出所有的编号
  35. Elementscodes=doc.body().select("td[title^=IA]>a[href^=javascript:view]");
  36. System.out.println(codes);
  37. System.out.println("------------------");
  38. System.out.println(codes.html());
  39. }catch(IOExceptione){
  40. e.printStackTrace();
  41. }
  42. }
  43. }
import java.io.File;
import java.io.IOException;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;

public class Test {
	public static void main(String[] args) {
		Test t = new Test();
		t.parseFile();
	}

	public void parseString() {
		String html = "<html><head><title>blog</title></head><body οnlοad='test()'><p>Parsed HTML into a doc.</p></body></html>";
		Document doc = Jsoup.parse(html);
		System.out.println(doc);
		Elements es = doc.body().getAllElements();
		System.out.println(es.attr("onload"));
		System.out.println(es.select("p"));
	}

	public void parseUrl() {
		try {
			Document doc = Jsoup.connect("http://www.baidu.com/").get();
			Elements hrefs = doc.select("a[href]");
			System.out.println(hrefs);
			System.out.println("------------------");
			System.out.println(hrefs.select("[href^=http]"));
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	public void parseFile() {
		try {
			File input = new File("input.html");
			Document doc = Jsoup.parse(input, "UTF-8");
			// 提取出所有的编号
			Elements codes = doc.body().select("td[title^=IA] > a[href^=javascript:view]");
			System.out.println(codes);
			System.out.println("------------------");
			System.out.println(codes.html());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}


2、parseString的输出:

  1. <html>
  2. <head>
  3. <title>blog</title>
  4. </head>
  5. <bodyοnlοad="test()">
  6. <p>ParsedHTMLintoadoc.</p>
  7. </body>
  8. </html>
  9. test()
  10. <p>ParsedHTMLintoadoc.</p>
<html>
 <head>
  <title>blog</title>
 </head>
 <body οnlοad="test()">
  <p>Parsed HTML into a doc.</p>
 </body>
</html>
test()

<p>Parsed HTML into a doc.</p>


3、parseUrl的输出:

  1. <ahref="/gaoji/preferences.html">设置</a>
  2. <ahref="http://passport.baidu.com/?login&tpl=mn">登录</a>
  3. <ahref="http://news.baidu.com">新闻</a>
  4. <ahref="http://tieba.baidu.com">贴吧</a>
  5. <ahref="http://zhidao.baidu.com">知道</a>
  6. <ahref="http://mp3.baidu.com">MP3</a>
  7. <ahref="http://image.baidu.com">图片</a>
  8. <ahref="http://video.baidu.com">视频</a>
  9. <ahref="http://map.baidu.com">地图</a>
  10. <ahref="#"name="ime_hw">手写</a>
  11. <ahref="#"name="ime_py">拼音</a>
  12. <ahref="#"name="ime_cl">关闭</a>
  13. <ahref="http://hi.baidu.com">空间</a>
  14. <ahref="http://baike.baidu.com">百科</a>
  15. <ahref="http://www.hao123.com">hao123</a>
  16. <ahref="/more/">更多>></a>
  17. <aid="st"οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')"href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
  18. <ahref="http://e.baidu.com/?refer=888">加入百度推广</a>
  19. <ahref="http://top.baidu.com">搜索风云榜</a>
  20. <ahref="http://home.baidu.com">关于百度</a>
  21. <ahref="http://ir.baidu.com">AboutBaidu</a>
  22. <ahref="/duty/">使用百度前必读</a>
  23. <ahref="http://www.miibeian.gov.cn"target="_blank">京ICP证030173号</a>
  24. ------------------
  25. <ahref="http://passport.baidu.com/?login&tpl=mn">登录</a>
  26. <ahref="http://news.baidu.com">新闻</a>
  27. <ahref="http://tieba.baidu.com">贴吧</a>
  28. <ahref="http://zhidao.baidu.com">知道</a>
  29. <ahref="http://mp3.baidu.com">MP3</a>
  30. <ahref="http://image.baidu.com">图片</a>
  31. <ahref="http://video.baidu.com">视频</a>
  32. <ahref="http://map.baidu.com">地图</a>
  33. <ahref="http://hi.baidu.com">空间</a>
  34. <ahref="http://baike.baidu.com">百科</a>
  35. <ahref="http://www.hao123.com">hao123</a>
  36. <aid="st"οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')"href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
  37. <ahref="http://e.baidu.com/?refer=888">加入百度推广</a>
  38. <ahref="http://top.baidu.com">搜索风云榜</a>
  39. <ahref="http://home.baidu.com">关于百度</a>
  40. <ahref="http://ir.baidu.com">AboutBaidu</a>
  41. <ahref="http://www.miibeian.gov.cn"target="_blank">京ICP证030173号</a>
<a href="/gaoji/preferences.html">设置</a>
<a href="http://passport.baidu.com/?login&tpl=mn">登录</a>
<a href="http://news.baidu.com">新闻</a>
<a href="http://tieba.baidu.com">贴吧</a>
<a href="http://zhidao.baidu.com">知道</a>
<a href="http://mp3.baidu.com">MP3</a>
<a href="http://image.baidu.com">图片</a>
<a href="http://video.baidu.com">视频</a>
<a href="http://map.baidu.com">地图</a>

<a href="#" name="ime_hw">手写</a>

<a href="#" name="ime_py">拼音</a>

<a href="#" name="ime_cl">关闭</a>
<a href="http://hi.baidu.com">空间</a>
<a href="http://baike.baidu.com">百科</a>
<a href="http://www.hao123.com">hao123</a>
<a href="/more/">更多>></a>
<a id="st" οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')" href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
<a href="http://e.baidu.com/?refer=888">加入百度推广</a>
<a href="http://top.baidu.com">搜索风云榜</a>
<a href="http://home.baidu.com">关于百度</a>
<a href="http://ir.baidu.com">About Baidu</a>
<a href="/duty/">使用百度前必读</a>
<a href="http://www.miibeian.gov.cn" target="_blank">京ICP证030173号</a>
------------------
<a href="http://passport.baidu.com/?login&tpl=mn">登录</a>
<a href="http://news.baidu.com">新闻</a>
<a href="http://tieba.baidu.com">贴吧</a>
<a href="http://zhidao.baidu.com">知道</a>
<a href="http://mp3.baidu.com">MP3</a>
<a href="http://image.baidu.com">图片</a>
<a href="http://video.baidu.com">视频</a>
<a href="http://map.baidu.com">地图</a>
<a href="http://hi.baidu.com">空间</a>
<a href="http://baike.baidu.com">百科</a>
<a href="http://www.hao123.com">hao123</a>
<a id="st" οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com')" href="http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com">把百度设为主页</a>
<a href="http://e.baidu.com/?refer=888">加入百度推广</a>
<a href="http://top.baidu.com">搜索风云榜</a>
<a href="http://home.baidu.com">关于百度</a>
<a href="http://ir.baidu.com">About Baidu</a>
<a href="http://www.miibeian.gov.cn" target="_blank">京ICP证030173号</a>


3、parseFile的输出:

  1. <ahref="javascript:view('67530','67530','0');">IA100908-002</a>
  2. <ahref="javascript:view('67529','67529','0');">IA100908-001</a>
  3. <ahref="javascript:view('67544','67544','0');">IA100908-016</a>
  4. <ahref="javascript:view('67364','67364','0');">IA100903-008</a>
  5. <ahref="javascript:view('67363','67363','0');">IA100903-007</a>
  6. <ahref="javascript:view('66104','66104','0');">IA100710-013</a>
  7. <ahref="javascript:view('57916','57916','0');">IA100515-013</a>
  8. <ahref="javascript:view('56962','56962','0');">IA100430-022</a>
  9. <ahref="javascript:view('66958','66958','0');">IA100830-001</a>
  10. <ahref="javascript:view('66319','66319','0');">IA100713-003</a>
  11. <ahref="javascript:view('66317','66317','0');">IA100713-001</a>
  12. <ahref="javascript:view('66321','66321','0');">IA100713-005</a>
  13. <ahref="javascript:view('66967','66967','0');">IA100830-010</a>
  14. <ahref="javascript:view('66999','66999','0');">IA100831-001</a>
  15. <ahref="javascript:view('67377','67377','0');">IA100904-004</a>
  16. <ahref="javascript:view('67378','67378','0');">IA100904-005</a>
  17. <ahref="javascript:view('3271','3271','0');">IA080115-031</a>
  18. ------------------
  19. IA100908-002
  20. IA100908-001
  21. IA100908-016
  22. IA100903-008
  23. IA100903-007
  24. IA100710-013
  25. IA100515-013
  26. IA100430-022
  27. IA100830-001
  28. IA100713-003
  29. IA100713-001
  30. IA100713-005
  31. IA100830-010
  32. IA100831-001
  33. IA100904-004
  34. IA100904-005
  35. IA080115-031
<a href="javascript:view('67530','67530','0');">IA100908-002</a>

<a href="javascript:view('67529','67529','0');">IA100908-001</a>

<a href="javascript:view('67544','67544','0');">IA100908-016</a>

<a href="javascript:view('67364','67364','0');">IA100903-008</a>

<a href="javascript:view('67363','67363','0');">IA100903-007</a>

<a href="javascript:view('66104','66104','0');">IA100710-013</a>

<a href="javascript:view('57916','57916','0');">IA100515-013</a>

<a href="javascript:view('56962','56962','0');">IA100430-022</a>

<a href="javascript:view('66958','66958','0');">IA100830-001</a>

<a href="javascript:view('66319','66319','0');">IA100713-003</a>

<a href="javascript:view('66317','66317','0');">IA100713-001</a>

<a href="javascript:view('66321','66321','0');">IA100713-005</a>

<a href="javascript:view('66967','66967','0');">IA100830-010</a>

<a href="javascript:view('66999','66999','0');">IA100831-001</a>

<a href="javascript:view('67377','67377','0');">IA100904-004</a>

<a href="javascript:view('67378','67378','0');">IA100904-005</a>

<a href="javascript:view('3271','3271','0');">IA080115-031</a>
------------------
IA100908-002
IA100908-001
IA100908-016
IA100903-008
IA100903-007
IA100710-013
IA100515-013
IA100430-022
IA100830-001
IA100713-003
IA100713-001
IA100713-005
IA100830-010
IA100831-001
IA100904-004
IA100904-005
IA080115-031


补充下,input.html的基本结果如图:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值