函数语句的统一_html/css_WEB-ITnose
程序员文章站
2022-06-08 18:46:31
...
------------
$("#tijiao").find("input:text").val("");
$("#addmes").hide();
---------
下面两句如何写在一个函数体内,使得input清零,并且div层隐藏。
回复讨论(解决方案)
function Submit(){
$("#tijiao").find("input:text").val("");
$("#addmes").hide();
}
???
function Submit(){
$("#tijiao").find("input:text").val("");
$("#addmes").hide();
}
???
$("#addmes").hide(function () {
$("#tijiao").find("input:text").val("");
str.length = 0;
});
--------我这样写的
上一篇: php简单的分页程序