- 论坛徽章:
- 0
|
本帖最后由 Perling_ 于 2014-11-17 18:47 编辑
贴下我的代码
#!/usr/bin/perl
use strict;
use warnings;
use XML::LibXML;
use XML::LibXML::Common;
use XML::NamespaceSupport;
use XML::SAX;
use XML::LibXML::NodeList;
my $dom = XML::LibXML->load_html( location => "./index.html" );
my $node = XML::LibXML::Element->new( $dom );
my @head = $node->getChildrensByTagName("head");
foreach (@head){
print "$_ \n";
}
执行时报错
./index.html:39: HTML parser error : htmlParseEntityRef: expecting ';'
ttp://v.t.sina.com.cn/share/share.php?',u=d.location.href,p=['url=',e(u),'&title
^
./index.html:39: HTML parser error : htmlParseEntityRef: expecting ';'
到深度分析。网站提供环球、军事、历史等板块。','&appkey
^
./index.html:40: HTML parser error : htmlParseEntityRef: expecting ';'
f='http://v.t.qq.com/share/share.php?',u=d.location.href,p=['url=',e(u),'&title
^
./index.html:40: HTML parser error : htmlParseEntityRef: expecting ';'
到深度分析。网站提供环球、军事、历史等板块。','&appkey
^
./index.html:42: HTML parser error : htmlParseEntityRef: expecting ';'
share.renren.com/share/buttonshare?link=',u=d.location,l=d.title,p=[e(u),'&title
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
<a href="http://so.miercn.com/cse/search?s=3150559939769104024&q=G20峰会"
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:62: HTML parser error : htmlParseEntityRef: expecting ';'
pan></a><a href="http://so.miercn.com/cse/search?s=3150559939769104024&q
^
./index.html:219: validity error : ID Switch_1 already defined
<div id="Switch_1">
^
./index.html:224: validity error : ID Switch_2 already defined
<div id="Switch_2">
^
./index.html:229: validity error : ID Switch_3 already defined
<div id="Switch_3">
^
./index.html:234: validity error : ID Switch_4 already defined
<div id="Switch_4">
^
./index.html:239: validity error : ID Switch_5 already defined
<div id="Switch_5">
^
./index.html:244: validity error : ID Switch_6 already defined
<div id="Switch_6">
^
./index.html:249: validity error : ID Switch_7 already defined
<div id="Switch_7">
^
./index.html:254: validity error : ID Switch_8 already defined
<div id="Switch_8">
^
./index.html:266: validity error : ID SwitchNav already defined
nmouseover="pauseSwitch();" onmouseout="goonSwitch();"></div><ul id="SwitchNav"
^
./index.html:268: HTML parser error : Unexpected end tag : script
</script>
^
i18n error : input conversion failed due to input error, bytes 0x81 0xD7 0xC1 0xEC
i18n error : input conversion failed due to input error, bytes 0x81 0xD7 0xC1 0xEC
I/O error : encoder error
求大神解答 初学者 不要见笑 谢谢 |
|