下拉框点链接js

$("#input_text").click(function(){
  $("#input_fonts").show();
});
$("#input_fonts").hover(
  function () {
    $(this).show();
  },
  function () {
    $(this).hide();
  }
);

 

posted @ 2014-07-02 10:57  唸随爱  阅读(128)  评论(0编辑  收藏  举报