wordpress插件的简单javascript

时间:2011-08-11 21:59:48

标签: javascript wordpress

我正忙着一个wordpress网站。我正在使用一个名为wp-imageflow2的插件,它在上传时使用图像的描述来建立链接,从我收集的内容中查找http来建立链接。我需要将图像链接到mailto标签。

到目前为止,我在图像流的描述中有一个指向html页面的链接。在html页面中,我有以下代码。它工作正常,但它使用地址栏中的html链接。我将如何首先创建新选项卡,在电子邮件客户端中打开电子邮件地址,并延迟关闭新选项卡。这应该会让你在原始页面上。这可能吗?

<script>
 function myFunc(){
 location.href="mailto:name@name.co.za";
 window.open('newwindow', config='height=50, width=50')
 window.setTimeout("window.close()", 1000);

}
</script>
</head>
<body onload="myFunc();">
</body>

1 个答案:

答案 0 :(得分:0)

wp-imageflow2.php第227行

if (($link == 'true') && (substr($attachment->post_content,0,7) == 'http://')) $linkurl = $attachment->post_content;

在这里添加几行:

else if (($link == 'true') && (substr($attachment->post_content,0,8) == 'https://')) $linkurl = $attachment->post_content;
else if (($link == 'true') && (substr($attachment->post_content,0,7) == 'mailto:')) $linkurl = $attachment->post_content;
else if (($link == 'true') && (substr($attachment->post_content,0,6) == 'ftp://')) $linkurl = $attachment->post_content;