各位先进大家好
小弟最近在接公司网页时有一些疑问
问题如下
1.后端工程师问我要如何用网址指出 弹出式视窗的页面
原本写的是
<li><span>2015-04-13</span
><a href="http://www.xxx.com.tw/media.aspx#"
class="overlay" rel="#event6">
</a></li>
我发现前一个人这样写
<script>
// Overlay
$("a.overlay[rel]").overlay({
top: 0,
mask: {
color: '#000',
loadSpeed: 200,
opacity: 0.8
},
fixed: true,
onLoad: function () {
var t = $.mask;
if (!t.isLoaded()) {
t.load();
var ov = this.getOverlay();
ov.css('z-index', '9999');
}
}
});
//$("div.bin-main").bind("click", function () {
// console.log($(this).find("a").html());
// $(this).find("a").click();
// return;
//});
function divClick(e) {
if ($(e).find("a").attr('href') != "#") {
window.open($(e).find("a").attr('href'));
return;
}
$(e).find("a").click();
}
// Scrollto
$(function () {
$('#subnav a[href*=#]:not([href=#])').click(function () {
if (location.pathname.replace(/^\//, '') ==
this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' +
this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
})
</script>
所以点了之后视窗弹出但网址不变
那么我可以用什么样的方式直接指向弹出式视窗打开后的页面呢?