通过 jQuery Popup 打开 URL
我从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 弹出同一窗口打开。
我发现它简单的Ajax> http://dev.iceburg.net/jquery/jqModal/#examples
感谢进步。
I found some codes and sources code from google.com.
I made function in 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 + '">')
}
It shows in HTML format (area tag with url link).
<area shape="poly" id="alberta.html" href="http://www.domain.com/alberta.html" coords="114,43" title="" class="">
I want that someone click that link, Open by jquery Popup same window.
I found it Simple Ajax > http://dev.iceburg.net/jquery/jqModal/#examples
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论