JQUERY-鼠标悬停DIV事件问题

JQUERY-鼠标悬停DIV事件问题,jquery,Jquery,我有一个DIV,当有人单击时显示请选择: HTML格式如下: <h3 id="joinCountryTitleH3" class="joinCreateAccountTitleH3">COUNTRY</h3> <span id="joinCountrySelectTextSPAN" class="joinCreateAccountDropDownTextSPAN">Please Select</span> <img src="h

我有一个DIV,当有人单击时显示请选择:

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
Adam

你也可以发布你的HTML吗?我已经添加了HTML,PHP只是添加了国家。你的问题是什么?