我在wordpress中工作。我從數據庫中提取數據並在下拉菜單中顯示。 而我的代碼是這樣的。複選框不顯示下拉值
<select multiple="multiple" class="tole_int">
<?php
global $wpdb;
$query_interest = "select p.* from wp_posts as p where p.post_type = 'interests' and p.post_name !='' ";
$tolerancetypes = $wpdb->get_results($query_interest,OBJECT);
foreach($tolerancetypes as $key=>$interest)
{
?>
<option value="<?php echo $interest->ID; ?>"><?php echo ucfirst($interest->post_name); ?></option>
<?php
}
?>
</select>
我寫了multiple =「multiple」屬性來選擇多個值。但我想添加複選框和值。那我該寫些什麼呢?
我不想顯示沒有和選定的值。那麼我需要寫什麼jQuery? –