[问题] 如何用网址指向弹出式视窗

楼主: wen09210   2015-12-27 13:49:46
各位先进大家好
小弟最近在接公司网页时有一些疑问
问题如下
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>
所以点了之后视窗弹出但网址不变
那么我可以用什么样的方式直接指向弹出式视窗打开后的页面呢?
作者: cokellen (cokellen)   2015-12-27 17:26:00
看不懂你的问题的意思?
楼主: wen09210   2015-12-27 17:31:00
其实我想问的只是有办法用网址直接指出popup 的视窗吗,像用锚点那样
作者: aspdoctor (大崎)   2015-12-28 01:30:00
直接指向是什么意思
楼主: wen09210   2015-12-28 13:32:00
如何用网址直接导入已弹出的视窗
作者: hit1205 (帮你把勇气装满)   2015-12-28 19:41:00
你是希望这样子吗:有<a>的那个页面,假设是 test.com/abc/那使用 test.com/abc/#popup1 之类的锚点就变成一连直接弹出 popup?如果是的话,找找 location.hash 吧

Links booklink

Contact Us: admin [ a t ] ucptt.com