- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
private.js
资源名称:NetPhone.rar [点击查看]
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
ASP/ASPX
- // 去空格,left,right,all可选
- function BaseTrim(str){
- lIdx=0;rIdx=str.length;
- if (BaseTrim.arguments.length==2)
- act=BaseTrim.arguments[1].toLowerCase()
- else
- act="all"
- for(var i=0;i<str.length;i++){
- thelStr=str.substring(lIdx,lIdx+1)
- therStr=str.substring(rIdx,rIdx-1)
- if ((act=="all" || act=="left") && thelStr==" "){
- lIdx++
- }
- if ((act=="all" || act=="right") && therStr==" "){
- rIdx--
- }
- }
- str=str.slice(lIdx,rIdx)
- return str
- }
- // 基本信息提示,得到焦点并选定
- function BaseAlert(theText,notice){
- alert(notice);
- theText.focus();
- theText.select();
- return false;
- }