Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
think-gem committed Jun 30, 2016
1 parent 0c52d23 commit 943ff5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ JeeSite 提供了常用工具进行封装,包括日志工具、缓存工具、

## 如何交流、反馈、参与贡献?

* QQ Group:127515876   209330483   223507718   1373527
* QQ Group:127515876   209330483   223507718
* E-mail:[email protected]
* GitHub:<https://github.com/thinkgem/jeesite>
* 开源中国:<http://git.oschina.net/thinkgem/jeesite>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ public String toString() {
}

sb.append("<li class=\"disabled controls\"><a href=\"javascript:\">当前 ");
sb.append("<input type=\"text\" value=\""+pageNo+"\" onkeypress=\"var e=window.event||this;var c=e.keyCode||e.which;if(c==13)");
sb.append("<input type=\"text\" value=\""+pageNo+"\" onkeypress=\"var e=window.event||event;var c=e.keyCode||e.which;if(c==13)");
sb.append(funcName+"(this.value,"+pageSize+",'"+funcParam+"');\" onclick=\"this.select();\"/> / ");
sb.append("<input type=\"text\" value=\""+pageSize+"\" onkeypress=\"var e=window.event||this;var c=e.keyCode||e.which;if(c==13)");
sb.append("<input type=\"text\" value=\""+pageSize+"\" onkeypress=\"var e=window.event||event;var c=e.keyCode||e.which;if(c==13)");
sb.append(funcName+"("+pageNo+",this.value,'"+funcParam+"');\" onclick=\"this.select();\"/> 条,");
sb.append("共 " + count + " 条"+(message!=null?message:"")+"</a></li>\n");

Expand Down

0 comments on commit 943ff5c

Please sign in to comment.