\
<input id="test" type="button" />/*按钮*/

<div id="tanchu"></div>
<script language="javascript">
$(document).ready(function(e) {
    $("#test").click(function(e) {
        $("#tanchu").show();
    });
$("#tanchu").mouseout(function(e) {
        $(this).hide();
    });
});
</script>
View Code

相关文章:

  • 2021-10-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
猜你喜欢
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案