아래의 소스를 select로 수정하고 싶습니다.
본문
아래의 소스를 select로 수정하고 싶습니다.
방법을 알려주실 수 있나요?
<div class="col-md-6">
<p class="top_cities"><?php echo translate('top_cities'); ?></p>
<div class="city_names">
<?php
if (isset($topCity_List) && !empty($topCity_List)) {
foreach ($topCity_List as $crow) {
?>
<a onclick="change_current_city(this)" href="javascript:void(0)" data-name="<?php echo $crow['city_title']; ?>" class="badge badge-pill white"><?php echo $crow['city_title']; ?></a>
<?php
}
}
?>
</div>
</div>
답변 2
php에 해당하는 문구를 아래와 같이 변경하면 select로 이용가능합니다.
select name은 임의로 넣어도 될듯하구요.
부분만 올라와서 도움이 될지는 모르겠네요.
<select name="city_names" onchange="change_current_city(this)">
<?php
if (isset($topCity_List) && !empty($topCity_List)) {
foreach ($topCity_List as $crow) {
?>
<option value="<?php echo $crow['city_title']; ?>"><?php echo $crow['city_title']; ?></option>
<?}
}?>
</select>
목동이되어님, 답변 감사합니다.
아래의 버튼을 누르면 select 서브카테고리로 선택이 됩니다.
버튼을 select로 변경하려고요.
그래서 일치 select를 선택하면 서브카테고리가 선택되게 하고 싶어요.
부탁드립니다. 감사합니다.
---<<버튼>>---------------------------------------------------------------------------------
<div class="col-md-3">
<p class="top_cities"><?php echo translate('top_cities'); ?></p>
<div class="city_names">
<?php
if (isset($topCity_List) && !empty($topCity_List)) {
foreach ($topCity_List as $crow) {
?>
<a onclick="change_current_city(this)" href="javascript:void(0)" data-name="<?php echo $crow['city_title']; ?>" class="badge badge-pill white"><?php echo $crow['city_title']; ?></a>
<?php
}
}
?>
</div>
</div>
---<<버튼>>---------------------------------------------------------------------------------
---<<select>>---------------------------------------------------------------------------------
<div class="col-md-3">
<select class="kb-select initialized" onchange="this.form.submit()" name="location" id="location">
<option value="0"><?php echo translate('all') . " " . translate('location'); ?></option>
<?php foreach ($app_location as $val): ?>
<option <?php echo ($location == $val['loc_id']) ? "selected='selected'" : ""; ?> value="<?php echo $val['loc_id'] ?>"><?php echo $val['loc_title'] ?></option>
<?php endforeach; ?>
</select>
</div>
---------------------------------------------------------------------------