簡體   English   中英

表單中的文本區域空白

[英]Text area white spaces in form

我在textarea中有一種形式:

<textarea wrap="physical" cols="28" rows="5" name="<portlet:namespace />tsSummary" onKeyDown="CountRight(this.form.<portlet:namespace />tsSummary,this.form.right,200);getElementById('char_count_summary').innerHTML = this.value.length" onKeyUp="CountRight(this.form.<portlet:namespace />tsSummary,this.form.right,200);getElementById('char_count_summary').innerHTML = this.value.length" onfocus="getElementById('char_count_summary').innerHTML = this.value.length">
                    <c:choose><c:when test="<%=Validator.isNotNull(dMang)%>"><%=dMang.getTsSummary()%></c:when><c:otherwise><%=""%></c:otherwise></c:choose>
            </textarea>
                <b><span id=char_count_summary></span></b>
                <input readonly type="hidden" name="right" size=3 maxlength=3>

將計數限制為200的Javascript:

function CountRight(field, count, max) {
        // if the length of the string in the input field is greater than the max value, trim it
        if (field.value.length > max)
        field.value = field.value.substring(0, max);
        else
        // calculate the remaining characters
        count.value = max - field.value.length;
    }

但是,每當我打開表單時,都會得到多余的前導空格,並且顯示的多余字符數超過200。如何在內容之前刪除多余的空格?

刪除源中<textarea …><c:choose>之間的空格

function trim(value) {
  value = value.replace(/^\s+/,''); 
  value = value.replace(/\s+$/,'');
  return value;
}

這將刪除字符串開頭或結尾的所有空格。 你可以做類似的事情

field.value = trim(field.value);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM