如果我的网址中有,如何创建:
mysite.com/#newgoal
,我的模态框显示了吗?
如果我单击带有 的按钮,则会显示当前id="newGoalButton"
。我同时需要这两种选择。
HTML:
<a href="#newgoal" id="newGoalButton">New Goal</a>
JS:
$(document).ready(function(){
$('#newGoalButton').click(function() {
$(".fullWhite").fadeIn(100);
$(".modal").fadeIn(200);
});
$('.modal .iks').click(function() {
$(".fullWhite").fadeOut(200);
$(".modal").fadeOut(100);
});
});