data-original-title或者title的值如何调用函数?
下面这种写法哪里出错了?为什么出不来效果?
<button type="button"
class="btn btn-default"
data-toggle="popover"
title=showContent()
data-content="我是弹出框的内容"
data-trigger="hover focus">
猛击我吧
</button>
<script>
$(function(){
$('[data-toggle="popover"]').popover();
});
function showContent(){
return "我是通过函数返回的弹出框内容";
}
</script>