bootstrap 中的popover放在input上怎么使用

input框输入邮箱,当input失去焦点时验证输入的邮箱格式,入股不正确就显示popover,input获得焦点时不显示popover该怎么实现啊?我在input加了o... input框输入邮箱,当input失去焦点时验证输入的邮箱格式,入股不正确就显示popover,input获得焦点时不显示popover该怎么实现啊?我在input加了onfouce=vv()
function vv(){

$('#email').popover('hide');
}
不能实现啊
展开
 我来答
天机小子
推荐于2016-01-24 · TA获得超过5万个赞
知道大有可为答主
回答量:8940
采纳率:86%
帮助的人:2868万
展开全部
BootStrap利用popover实现鼠标经过显示并保持显示框

在商城里,导航栏的购物车展示经常需要鼠标经过时,显示已经放入购物车的商品,bootstrap是没有直接用的插件的,这个时候就可以使用popover这个插件改造后实现,具体如下:

html实现:

1 <a href="纤尘碧#" rel="drevil">
2 <span class="glyphicon glyphicon-shopping-cart"> </span> 购物车兄运
3 </a>

javascript实现:
01 $(function(){
02 $("[rel=drevil]").popover({
03 trigger:'毁举manual',
04 placement : 'bottom', //placement of the popover. also can use top, bottom, left or right
05 title : '<div style="text-align:center; color:red; text-decoration:underline; font-size:14px;"> Muah ha ha</div>', //this is the top title bar of the popover. add some basic css
06 html: 'true', //needed to show html of course
07 content : '<div id="popOverBox"><img src="http://www.hd-report.com/wp-content/uploads/2008/08/mr-evil.jpg" width="251" height="201" /></div>', //this is the content of the html box. add the image here or anything you want really.
08 animation: false
09 }).on("mouseenter", function () {
10 var _this = this;
11 $(this).popover("show");
12 $(this).siblings(".popover").on("mouseleave", function () {
13 $(_this).popover('hide');
14 });
15 }).on("mouseleave", function () {
16 var _this = this;
17 setTimeout(function () {
18 if (!$(".popover:hover").length) {
19 $(_this).popover("hide")
20 }
21 }, 100);
22 });
23 });

这样就能实现了:
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式