1
我已經經歷了關於此主題的可用問題,並嘗試了一切,但仍然無法使用我的按鍵功能。Keyup不適用於動態添加的輸入組
$(document).ready(function() {
$(document).on('keyup', '.pollOption', function() {
var empty = false;
$(".pollOption").each(function() {
if ($(this).val() == '') {
empty = true;
}
});
if (empty) {
$("#cpsubmit").attr('disabled', 'disabled');
$("#moreop").attr('disabled', 'disabled');
} else {
$("#cpsubmit").removeAttr('disabled');
$("#moreop").removeAttr('disabled');
}
});
//Keep Track of no. of options on the page
var noOfOptions = 2;
// Function to add input fields (since I may have to delete them I've use bootstrap's input-groups, I guess this is causing issue)
$("#moreop").on('click', function() {
noOfOptions++;
$("#options").append("<div class='input-group pollOption'><input class='form-control' type='text' placeholder='New Option' name='op" + noOfOptions + "'/><span class='input-group-addon'><a href='#' id='removeOption' class='text-danger'>Remove</a></span></div>");
});
// To delete any option (only the dynamically created options can be deleted)
$("#cpform").on('click', '#removeOption', function() {
$(this).parents('.input-group').remove();
noOfOptions--;
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form id="cpform" method="POST" action="/polls/add">
<div class="form-group">
<label>Title</label>
<input id="title" type="text" placeholder="Ask your question here..." name="title" class="form-control" />
</div>
<div id="options" class="form-group">
<label>Options</label>
<input type="text" placeholder="Option 1" name="op1" class="form-control pollOption" />
<input type="text" placeholder="Option 2" name="op2" class="form-control pollOption" />
</div>
<button id="moreop" type="button" disabled="disabled" class="btn btn-outline-info btn-primary">More Options</button><br/><br/>
<button id="cpsubmit" type="submit" disabled="disabled" class="btn btn-info btn-primary">Submit</button>
</form>
該代碼完全適用於已在HTML部分的兩個輸入。 當我點擊「更多選項」按鈕時,新的字段被添加,但「鍵盤」不起作用。 事實上,當我在新添加的輸入上輸入內容時,我的「更多選項」&「提交」按鈕被禁用(真的不知道爲什麼會發生這種情況)。
仍然KEYUP不工作。儘管按鈕現在不會在新輸入中添加一些文本時被禁用。 –
不知道什麼喲意味着_仍然是keyup不working_不是'keyup'誰_disable/enable_按鈕??!你期望從keyup做別的嗎? –
當我添加兩個三個輸入並在其中一個上輸入文本時,該鍵控工作並禁用它們。但這不是我想要的。我希望在添加輸入後立即禁用按鈕,以便用戶在填充前一個輸入之前不會再輸入一個輸入。 –