2014-03-28 4 views
0

드롭 다운 메뉴 (선택 목록)를 더 이상 클릭 할 수 없습니다.Wordpress 양식 드롭 다운 메뉴를 클릭 할 수 없음

여기에 코드

<form id="salesforce_w2l_lead_4_sidebar" class="w2llead sidebar top-aligned" method="post" action="#salesforce_w2l_lead_4_sidebar" _lpchecked="1"> 
    <div class="sf_field sf_field_first_name sf_type_text"> 
     <label class="w2llabel required text" for="sf_first_name">First name: <sup><span class="required">*</span></sup></label> 
     <input placeholder="" value="" id="sf_first_name" class="w2linput text" name="first_name" type="text" mouseev="true" keyev="true" style="cursor: auto;"> 
    </div> 
    <div class="sf_field sf_field_last_name sf_type_text"> 
     <label class="w2llabel required text" for="sf_last_name">Last name: <sup><span class="required">*</span></sup></label> 
     <input placeholder="" value="" id="sf_last_name" class="w2linput text" name="last_name" type="text"> 
    </div> 
    <div class="sf_field sf_field_company sf_type_text">  
     <label class="w2llabel text" for="sf_company">Company:</label>  
     <input placeholder="" value="" id="sf_company" class="w2linput text" name="company" type="text"> 
    </div> 
    <div class="sf_field sf_field_title sf_type_text"> 
     <label class="w2llabel text" for="sf_title">Title:</label>  
     <input placeholder="" value="" id="sf_title" class="w2linput text" name="title" type="text"> 
    </div> 
    <div class="sf_field sf_field_email sf_type_text"> 
     <label class="w2llabel required text" for="sf_email">Email: <sup><span class="required">*</span></sup></label> 
     <input placeholder="" value="" id="sf_email" class="w2linput text" name="email" type="text"> 
    </div> 
    <div class="sf_field sf_field_00NA0000008rkLE sf_type_select"> 
     <label class="w2llabel required select" for="sf_00NA0000008rkLE">I am interested in...: <sup><span class="required">*</span></sup></label>  
     <select id="sf_00NA0000008rkLE" class="w2linput select" name="00NA0000008rkLE"></select> 
    </div> 
    <div class="sf_field sf_field_description sf_type_textarea">  
     <label class="w2llabel textarea" for="sf_description">Comments:</label>  
     <textarea id="sf_description" class="w2linput textarea" name="description" placeholder=""></textarea> 
    </div> 
    <div class="sf_field sf_field_captcha sf_type_captcha"> 
     <label class="w2llabel">Type the text shown: *</label>    
     <img class="w2limg" src="http://rocket-space.com/wp-admin/admin-ajax.php?action=sfw2l_get_captcha&amp;_CAPTCHA=true&amp;t=0.32436700+1395829007&amp;hash=981524cfc3ec488d5a0671c5467b785ed9733c40" alt="CAPTCHA image"> 
     <input type="text" class="w2linput text captcha" name="captcha_text" value=""><input type="hidden" class="w2linput hidden" name="captcha_hash" value="981524cfc3ec488d5a0671c5467b785ed9733c40"> 
    </div> 
     <input type="text" name="message" class="w2linput" value="" style="display: none;"> 
     <input type="hidden" name="form_id" class="w2linput" value="4"> 
    <div class="w2lsubmit"> 
     <input type="submit" name="w2lsubmit" class="w2linput submit" value="Submit"> 
    </div> 
</form> 

답변

0

당신이 그것을에는 옵션이 없기 때문에 드롭 다운 목록이 작동하지 않는 것입니다.

<div class="sf_field sf_field_00NA0000008rkLE sf_type_select"> 
    <label class="w2llabel required select" for="sf_00NA0000008rkLE">I am interested in...: <sup><span class="required">*</span></sup></label>  
    <select id="sf_00NA0000008rkLE" class="w2linput select" name="00NA0000008rkLE"></select> 
</div> 

선택 목록에 옵션을 추가해야합니다. example의 경우 :

<div class="sf_field sf_field_00NA0000008rkLE sf_type_select"> 
    <label class="w2llabel required select" for="sf_00NA0000008rkLE">I am interested in...: <sup><span class="required">*</span></sup></label>  
    <select id="sf_00NA0000008rkLE" class="w2linput select" name="00NA0000008rkLE"> 
     <option value="car">Car</option> 
     <option value="bike">Bike</option> 
     <option value="lorry">Lorry</option> 
    </select> 
</div> 
관련 문제