我想在我的选择框中添加一个底部工具提示,但无法这样做。在悬停时没有显示任何内容。
以下是我的选择框代码:
<select class="navbar-search pull-left span1" name="currency" id="select-currency" data-original-title="Tooltip on bottom" data-toggle="tooltip" data-placement="bottom">
<?php foreach ($this->getCurrencies() as $_code => $_name): ?>
<option value="<?php echo $this->getSwitchCurrencyUrl($_code) ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>>
<?php echo $_code ?>
</option>
<?php endforeach; ?>
</select>
这是我的工具提示jquery:
<script>
jQuery(function(){
$("[data-toggle=tooltip]").tooltip();
});
</script>