#example
当我从选项框中选择时,我想在 div 中插入新的单选按钮。这是我的代码,但是当我选择一个值时它不起作用。我在屏幕上看不到任何东西。问题出在哪里?
<select id="keys">
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
<script>
var selectedKey = $("#keys").val();
$('#example').append('<input name='+selectedKey+' class="ace-checkbox-2" type="checkbox"><span class="lbl">'+selectedKey+' </span>');
</script>
<div id="example"></div>