千家信息网

搜索框聚焦伸展

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,html中对应的表单点击(此处)折叠或打开对应的js$(function(){$("#q").focus(function(){$("#q").animate({"width":300},400);}
千家信息网最后更新 2025年01月23日搜索框聚焦伸展html中对应的表单

点击(此处)折叠或打开

  1. <form target="_blank" action="/search" accept-charset="UTF-8" method="get">
  2. <input type="text" id="q" class="search-input" name="q" placeholder="搜索" value="">
  3. </form>
对应的js
$(function(){
$("#q").focus(function(){
$("#q").animate({"width":300},400);
});
$("#q").blur(function(){
$("#q").animate({"width":200},400);
});
});
0