这是我的 HTML 代码
<!-- Javascript DropDown menu -->
<label>Select le groupe</label>
<select id="groupe" onchange="yyyyy";>
<option value="">Select le groupe</option>
</select>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
我想在我的代码中使用下拉菜单。在我的代码javascript中我有一个函数
function getTable() {
$.ajax({
dataType: 'json',
type: 'GET',
url: 'call/json/mytables',
xhrFields: {
withCredentials: true
},
success: function(response) {
console.log(response);
sendQuery(response[0]);
},
});
}
像这样和函数(响应)给我我需要的Json,我需要在onchange =“yyyyy”中的DropDown,但我不知道我怎么能使用它????????