我希望能夠根據用戶輸入的內容更改textarea標記內的值。Textarea值等於「」
<div class="form-group">
<label>Describe what happened</label>
<textarea id="descriptionReport" form="newReport" placeholder="Describe what happened.." name="description" data-rule-describeEvent="true " cols="5" rows="5" class="form-control" maxlength="255" a></textarea>
</div>
我已經宣佈我的腳本變量:
$(document).ready(function() {
var vm = {
movieIds: [],
ReportDescription: null
};
然後,我將其設置爲textarea標籤
vm.ReportDescription = document.getElementById("descriptionReport").value;
內的值,我總是得到的值等於「」。
我添加了一個驗證插件來檢查值是否有效:
$.validator.addMethod("describeEvent", function() {
return vm.ReportDescription !== "";
}, "Please describe what happened.");
的一句「請描述發生了什麼。」無論我在表單中輸入textarea,都會出現。
我是相當新的這一點,一直沒能找到這對我工作的解決方案。
「取決於用戶在框中鍵入的內容」。那個盒子? – SilverSurfer
我的html表單中的文本框@SilverSurfer – IlirAs
它是您窗體中的另一種輸入類型文本嗎? – SilverSurfer