如何创建code like this。单击图像并打开2个链接时,一个在同一个窗口,另一个作为弹出窗口。
答案 0 :(得分:1)
HTML
<img src="http://www.firefall.cc/wp-content/uploads/2015/02/start-download-crack.gif" class="yourlink">
JS:
<script>
$('img.yourlink').click(function(e) {
e.preventDefault();
window.open('http://livemecca.blogspot.com');
window.location.href = 'http://firefall.cc/';
});
</script>