【发布时间】:2020-11-10 02:48:21
【问题描述】:
我有这个编辑模式,当我加载它时,它会加载所有其他字段,除了单选按钮之一。 我尝试使用下面列出的两个命令加载它,但没有运气。 有什么我缺少的东西让它工作吗?
<div class="text-center">
<div class="w3-row">
<label for="event_category">Event Category:</label>
<input class="w3-radio" type="radio" name="event_category" id="event-category" value="C">
<label>Competition</label>
<input class="w3-radio" type="radio" name="event_category" id="event-category" value="F">
<label>Fundraiser</label>
<br>
<input class="w3-radio" type="radio" name="event_category" id="event-category" value="P">
<label>Practice</label>
<input class="w3-radio" type="radio" name="event_category" id="event-category" value="O">
<label>Other</label>
</div>
</div>
$('#event_category').prop('checked',event.event_category);
$('#event_category').val("input[name='radio']:checked");
【问题讨论】:
-
你希望
<input class="w3-radio" type="radio" name="event_category" id="event-category" value="C">在加载时被检查
标签: javascript html ajax laravel