我的Drupal网站有问题。 我正在使用Colorbox加载订阅表单,但表单焦点丢失了。示例位于http://luchshieceni.ru/
window.jQuery(document).ready(function($) {
$('.colorbox5').colorbox({open:true, inline:true, href:'div#content5'});
});
这是表格
<form class="sr-box" method="post" action="https://smartresponder.ru/subscribe.html" target="_blank" name="SR_form_63724_75">
<input type="text" name="field_name_first" class="form-txt" value="Ваше имя" onfocus="value='';">
<input type="text" name="field_email" class="form-txt" value="Ваша электронная почта" onfocus="value='';">
<input type="submit" value="Подписаться" name="subscribe" id="" class="sub-btn">
</form>
你可以试着帮助我吗?
提前谢谢!
答案 0 :(得分:2)
我遇到了同样的问题。我按照你对Drupal论坛的建议(同一问题的双重帖子),是的,它也解决了我的问题。我有:
$(popup).colorbox({rel:'nofollow', preloading:false, open:true, inline:true, href:popup, scalePhotos:false, iframe:true, arrowKey:false, transition:"none", slideshow:false });
修正了:
$.colorbox({rel:'nofollow', preloading:false, open:true, inline:true, href:popup, scalePhotos:false, iframe:true, arrowKey:false, transition:"none", slideshow:false });
jquery选择器不能与href相同。
这是非常模糊的,没有在任何地方记录。并导致重大问题。所以我希望它有所帮助。