如果这个问题是其他问题的重复,我很抱歉。我已经调查了其中一些,但他们没有回答我的特定问题。
我在下面的代码中打印警报语句时遇到“无效标签”错误:
$(document).ready(
function(){
if( $( map#map ).length > 0 ){
//alert( found a map! );
$( map#map area ).each($area,
function(i, val){
alert( Found: + val ):
}
);
}
}
);
我得到的相同错误是我做了以下操作:<code>alert(Found:+$(this))代码>
有人能告诉我为什么会发生这种事吗?
ps:我试图阅读的内容如下:
<map id="map" name="imgmap20116293122">
<area alt="" coords="11,76,97,127" href="" shape="rect" target="" title="" />
<area alt="" coords="12,28,96,74" href="" shape="rect" target="" title="" />
<area alt="" coords="100,28,160,73" href="" shape="rect" target="" title="" />
<area alt="" coords="162,28,221,73" href="" shape="rect" target="" title="" />
<area alt="" coords="502,239,549,282" href="" shape="rect" target="" title="" />
<area alt="" coords="473,284,554,330" href="" shape="rect" target="" title="" /-->