如何在Joomla的新标签中打开链接?

时间:2013-10-24 10:58:07

标签: joomla joomla3.0 joomla-module

我在Joomla模板中使用RokSprocket模块,我需要在不同的窗口中通过链接打开一张照片,为此,有人可以帮助我吗? 提前致谢 最好的祝福 亚历杭德罗·卡斯坦 PS:对不起我的小英语

2 个答案:

答案 0 :(得分:1)

我使用以下方法来解决我的问题:

<a href="/extensions/roksprocket/13-roksprocket-features/25-sample-content-1" target="_blank">
  <img src="/extensions/media/rokgallery/f/faa025be-fad2-4f7b-f7bc-2e3e9ad367a1/69f8dbe1-9a16-42d1-8ee7-ca0aa2be7992.jpg" alt="" style="max-width: 100%; height: auto;">
</a>

答案 1 :(得分:1)

<!DOCTYPE html><html><head><script>var w;function openwindow(){w=window.open('http://www.w3schools.com/','', 'width=100,height=100');w.focus();}function myFunction(){w.resizeTo(500,500);w.focus();}</script></head><body><button onclick="openwindow()">Create window</button><button onclick="myFunction()">Resize window</button></body></html>