使用Spring表单,通过jQuery选择一个元素

时间:2014-04-07 16:48:53

标签: jquery spring

我有一个使用Spring的表单,代码是这样的:

<form:form class="form-horizontal col-md-12" method="POST" action="../admin/new_laborItem.do" id="laborForm" modelAttribute="laborBean">
    <h5 class="text-info"><strong>Job Definition</strong></h5>
    <div class="form-group">
        <label for="laborItem" class="col-sm-3 control-label">Item:</label>
        <div class="col-sm-9">
            <form:input id="laborItem" path="item" type="text" required="required" class="form-control" placeholder="Labor Code"></form:input>
        </div>
    </div>
</form:form>

我想获取文本字段的文本,但我不知道为什么它不能使用此代码:

console.log($('#laborItem').text());
console.log($('#laborItem').html());

结果是空字符串。

enter image description here

我在文本字段中输入测试并按下按钮

后触发了控制台

1 个答案:

答案 0 :(得分:0)

只需使用:

$('#laborItem').val()

您需要使用jQuery的val() attr来获取input元素的值