>웹 프론트엔드 >JS 튜토리얼 >javascript_javascript 기술의 좋은 함수 스크립트 코드

javascript_javascript 기술의 좋은 함수 스크립트 코드

WBOY
WBOY원래의
2016-05-16 19:01:00951검색

문자 길이 계산을 위한 js 함수

코드 복사 코드는 다음과 같습니다.

함수 LEN(str){
var i,sum=0
for(i=0;iif((str.charCodeAt( i)> ;=0) && (str.charCodeAt(i)<=255))
sum=sum 1
else
sum=sum 2
}
return sum; ;
}

문자 앞뒤 공백을 제거하는 함수
코드 복사 코드는 다음과 같습니다.

function TRIM(value){return value.replace(/^s*/,'').replace(/s*$/,' '); }

이미지 적응 크기 기능 코드
코드 복사 코드는 다음과 같습니다.

function imgAutoFit(imgObj,maxWidth,maxHeight){
var heightWidth;
var widthHeight;
heightWidth = imgObj.offsetHeight/imgObj.offsetWidth;
widthHeight = im gObj.offsetWidth /imgObj.offsetHeight;
if(imgObj.offsetWidth>maxWidth){
imgObj.width = maxWidth;
imgObj.height = maxWidth*heightWidth;
if(imgObj.offsetHeight> maxHeight){
imgObj.height = maxHeight;
imgObj.width = maxHeight*widthHeight;


function checkTagIsHave(s,t){
    var re=new RegExp("<\/?" t "(?:(?:\s|\/)(?:\n|.)* ?)?>","ig");
    var r=re.test(s);
    re=null;
    r을 반환합니다.
}

function imgUploadFit(){
    var u = document.getElementsByName("imgUploadName");
    if(0==u.length) return;
    for(var i=0;i        //imgAutoFit(u[i],560,560);
        imgAutoFit(u[i],320,320);
        u[i].onclick = function(){window.open(this.src);}
        u[i].style.cursor = "포인터";
        u[i].title = "点击看原图";
    }
}

function inputContent(theQ,oldContent,re,p){
    var o,oA=["msgframeamend","pingJiaFrame","touSuFrame"];
    for(o in oA){
        if($(oA[o])){
            theQ.editIframe(oA[o]);
            if("msgframeamend"==oA[o]) setTimeout(function(){$(oA[o]).contentWindow.document.body.innerHTML = oldContent.replace(re,"") p[1] ;},100);
            반품;
        }
    }
}

function checkCommon(n,v,t){
    var s = t?"补充提问":"回复内容";
    var o=document.getElementById(n).contentWindow;
    if("msgframereply" == n){
        if(v == ""){
            alert("请填写" s " !");
            o.focus();
            false를 반환합니다.
        }
    }
    if(""==v.replace(/|s|  /ig,"")&&checkTagIsHave(v,"img")){
        alert("针对图picture ,请附上一些说명성있는 문자!") ;
        o.focus();
        false를 반환합니다.
    }
    if(10000        alert(s "超过5000字数限system !");
        o.focus();
        false를 반환합니다.
    }
    true를 반환합니다.
}
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.