我在google.com上找到了一些代码和来源代码。
我在Javascript中创建了函数。
function a(URL, COORDS, ALT, LINK) {
document.write('<AREA SHAPE="poly" ');
document.write('id="'+URL+'" href="http://www.domain.com/' + URL);
/*This line where you configure the output URL, put your domain name address here */
document.writeln('" COORDS="' + COORDS + '" title="' + ALT + '" class="' + LINK + '">')
}
以HTML格式显示(带有url链接的区域标记)。
<area shape="poly" id="alberta.html" href="http://www.domain.com/alberta.html" coords="114,43" title="" class="">
我希望有人点击该链接,通过jquery Popup打开同一个窗口。
我发现它简单的Ajax&gt; http://dev.iceburg.net/jquery/jqModal/#examples
先谢谢。