gpt4 book ai didi

javascript - 在模式对话框中设置默认值

转载 作者:行者123 更新时间:2023-12-03 01:31:45 26 4
gpt4 key购买 nike

我想在模式对话框打开后立即在表单控件中设置默认值,不幸的是这似乎并不那么容易。目前我不知道为什么它没有设置任何值。

HTML

<!-- Modal - Create -->
<div class="modal fade" id="add_new_task_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">Add item</h4>
</div>
<div class="modal-body">

<ul class="alert alert-danger" ng-if="errors.length > 0">
<li ng-repeat="error in errors">
{{ error }}
</li>
</ul>

<div class="form-group">
<label for="quantity">Quantity</label>
<input ng-model="task.quantity" type="text" id="quantity" class="form-control"/>
</div>

<div class="form-group">
<label for="item">Item</label>
<input ng-model="task.item" type="text" id="item" class="form-control autocomplete"/>
</div>

</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" ng-click="addTask()">Save</button>
</div>
</div>
</div>
</div>

JS

<script type="text/javascript"> 
$('#add_new_task_modal').on('show.bs.modal', function() {
$('#quantity').val("some default value");
});
</script>

最佳答案

如果你为此使用 angularjs,我会避免使用 jquery。虽然它可能有效,但它有点违背了首先使用 Angular 的整个想法。

相反,您应该使用模式对话框的 Controller 来设置初始模型状态,如下所示:

$scope.task = {
quantity: 5,
item: 'test'
}

关于javascript - 在模式对话框中设置默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51265312/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com