我的 MVC 3 视图中有按钮。这里是:
<button rowId="@employee.Id" value="refresh" class="button-submit" class="btn btn-mini" style="border: 0; background: transparent; box-shadow: none;">
<img class="btn btn-mini" width="24" height="24" alt="Delete doctor" src="/Content/img/refresh.png" />
</button>
我想显示工具提示,所以:
$(function () {
$(".button-submit").tooltip();
});
但在我的情况下不起作用。我怎样才能让它们工作?