最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to put a text limit in a form input box - Stack Overflow

programmeradmin2浏览0评论

I am looking to put a character limit on an input box on a form. I ideally want 140 characters but can't work out how to do it.

I'm using Angular on my front end.

My code for the input section i need a text limit for new.html

<div class="form-group">
  <label>Description 140 characters</label>
  <input type="text" ng-model="postsNew.post.description" class="form-control"  </textarea> 

I tried to use another textarea way but it deleted half of my form.

Here is my full code for this section

<section class="container">
    <h1>What happened?</h1>
    <form ng-submit="postsNew.submit()">
        <div class="form-group">
            <label>Tube Line</label>
            <select ng-model="postsNew.post.line" class="form-control">
                <option ng-repeat="line in postsNew.linesList" value="{{line}}">
                    {{line}}
                </option>
            </select>
        </div>
        **
        <div class="form-group">
            <label>Description 140 characters</label>
            <input type="text" ng-model="postsNew.post.description"
                   class="form-control"  </textarea>
        </div>
        **
        <div class="form-group">
            <label>Date</label><br>
            <input id="enddatefield" type="date" ng-model="postsNew.post.date"
                   class="form-control">
        </div>
        <div class="form-group">
            <label>Time</label><br>
            <input type="time" name="name" ng-model="postsNew.post.time"
                   class="form-control">
        </div>
        <input type="submit" value="Fingers crossed..." class="btn btn-primary
     pull-right">
    </form>
</section>

I am looking to put a character limit on an input box on a form. I ideally want 140 characters but can't work out how to do it.

I'm using Angular on my front end.

My code for the input section i need a text limit for new.html

<div class="form-group">
  <label>Description 140 characters</label>
  <input type="text" ng-model="postsNew.post.description" class="form-control"  </textarea> 

I tried to use another textarea way but it deleted half of my form.

Here is my full code for this section

<section class="container">
    <h1>What happened?</h1>
    <form ng-submit="postsNew.submit()">
        <div class="form-group">
            <label>Tube Line</label>
            <select ng-model="postsNew.post.line" class="form-control">
                <option ng-repeat="line in postsNew.linesList" value="{{line}}">
                    {{line}}
                </option>
            </select>
        </div>
        **
        <div class="form-group">
            <label>Description 140 characters</label>
            <input type="text" ng-model="postsNew.post.description"
                   class="form-control"  </textarea>
        </div>
        **
        <div class="form-group">
            <label>Date</label><br>
            <input id="enddatefield" type="date" ng-model="postsNew.post.date"
                   class="form-control">
        </div>
        <div class="form-group">
            <label>Time</label><br>
            <input type="time" name="name" ng-model="postsNew.post.time"
                   class="form-control">
        </div>
        <input type="submit" value="Fingers crossed..." class="btn btn-primary
     pull-right">
    </form>
</section>
Share Improve this question edited Oct 26, 2016 at 22:31 tykowale 4493 silver badges13 bronze badges asked Oct 26, 2016 at 20:43 nattie87nattie87 1151 gold badge4 silver badges11 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 5

With maxlength="int"

EXAMPLE:

<input type="text" name="text" maxlength="10">

Working DEMO.

You can use maxlength

<input type="text" name="max_length" maxlength="20">
<input type="text" ng-model="postsNew.post.description" class="form-control" maxlength="140" />

you can use this maxlength="140" attribute in your input field.

发布评论

评论列表(0)

  1. 暂无评论