#php #jquery #html #fancybox
#php #jquery #HTML #fancybox
Вопрос:
PHP
$profile_url = $vars['url'].'pg/profile/'.$user->username;
HTML
<div style='float:left;margin-top:8px;margin-right:-3px;'><a href='#edit_profile' class='apply_alert' id='{$job_id}'><span class='apply_button'></span></a></div>
<div id="edit_profile">
<div style="background:#fff;height:100%;border:1px solid #1583D0;">
<div style="padding:20px 10px 10px;">
<a style="text-decoration:none;" href="<?php echo $profile_url?>" class="profile_btn button-blue">Edit profile</a>
</div>
</div>
</div>
СКРИПТ
$(".apply_alert").fancybox({
'titlePosition' : 'inside',
'transitionIn' : 'none',
'transitionOut' : 'none',
'frameWidth' : 420, // set the width
'frameHeight' : 175
});
У меня есть fancybox. Внутри этого я добавляю ссылку на кнопку.
Проблема, с которой я сталкиваюсь, заключается в том, что URL, на который я ссылаюсь в теге привязки в fancybox, не работает. Когда я нажимаю на кнопку, всплывающее окно просто исчезает. Как это решить.
Ответ №1:
Хорошо, я нашел решение, просто установленное hideOnContentClick
false
в вашем скрипте fancybox…здесь это будет работать…