当在第一个下拉列表中选择一个项目时,我正在尝试更改第二个下拉列表
$output_body = '<select>';
$accounts = $service->management_accounts->listManagementAccounts("~all");
foreach($accounts['items'] as $item) {
$output_body .= sprintf('<option value="%d">%s</option>', $item['id'], $item['name']);
}
$output_body .= '</select>';
所以当我从上面的下拉列表中选择一个项目时,它应该将所选项目的值存储在变量中,并且该变量将在这里使用,我相信会更新下拉列表
$webproperties = $service->management_webproperties->listManagementWebproperties("var here");
foreach($webproperties['items'] as $item) {
$output_prop .= sprintf('<option value="">%s</option>', $item['name']);
}
$output_prop .= '</select>';