JQUERY - MouseOver DIV事件问题

时间:2014-12-18 08:58:51

标签: jquery

我有一个DIV,显示有人点击请选择:

enter image description here

HTML下方:

  <h3 id="joinCountryTitleH3" class="joinCreateAccountTitleH3">COUNTRY</h3>
  <span id="joinCountrySelectTextSPAN" class="joinCreateAccountDropDownTextSPAN">Please Select</span>
  <img src="http://www.content.dating/online-dating/dating-website/index-search-select.png" id="joinCountrySelectIMG" alt="Join Create Account Country DropDown"/>
  <div id="joinSearchCountryListContainerDIV" class="joinDropDownGenericDIV">
    <?php
      foreach($location->countryList as $key => $value) {
        $countryTemp = json_decode($key);
        if($countryTemp->zipEnabled) {
          echo '<span id="'.$countryTemp->countryCode.'" class="zipEnabled">'.$value.'</span><br>';
        }else{
          echo '<span id="'.$countryTemp->countryCode.'" class="zipDisabled">'.$value.'</span><br>';
        }
      }
    ?>
  </div>
  <span id="" class="joinSearchCountryDropdownSelectedSPAN"></span><br>
  <img src="http://www.content.dating/online-dating/dating-website/green-tick.png" id="joinCountryAcceptableIMG" class="joinGreenTickApprovalIMG" alt="Join Create Account Country Selection"/>

THX 亚当

0 个答案:

没有答案