2013-03-06 113 views
0

我的Drupal網站有問題。 我正在使用Colorbox加載訂閱表單,但表單焦點丟失。例如可在http://luchshieceni.ru/Formbox焦點丟失在顏色盒

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> 

能不能請你幫我? 在此先感謝!

回答

2

我有同樣的問題。我遵循Drupal論壇上的建議(同一問題的雙後),是的,它也解決了我的問題。我:

$.colorbox({rel:'nofollow', preloading:false, open:true, inline:true, href:popup, scalePhotos:false, iframe:true, arrowKey:false, transition:"none", slideshow:false }); 

jQuery選擇不能同A HREF:

$(popup).colorbox({rel:'nofollow', preloading:false, open:true, inline:true, href:popup, scalePhotos:false, iframe:true, arrowKey:false, transition:"none", slideshow:false }); 

與固定它。

這是非常模糊的,並沒有記錄在任何地方。並導致重大問題。所以我希望它能幫助別人。