boottstrap 의 도구 알림 인 스 턴 스 코드
도구 알림 구현 코드 는 다음 과 같 습 니 다.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>XXX</title>
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css" rel="external nofollow" >
<link rel="stylesheet" href="css/main.css" rel="external nofollow" >
<!--[if lt IE 9]>
<script src="lib/html5shiv/html5shiv.min.js"></script>
<script src="lib/respond/respond.min.js"></script>
<![endif]-->
</head>
<body style="margin: 200px;">
<!-- -->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title=" "> </a>
<!--bootstrop , jQuery -->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="bootstrop " data-toggle="tooltip">bootstrop </a>
<!--data-animation true, tooltip CSS fade 。
false, 。-->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="animation" data-toggle="tooltip" data-animation="false">data-animation</a>
<!--data-html false, html。
true, html 。-->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="<b>html</b>" data-toggle="tooltip" data-html="true">data-html</a>
<!--data-placement top, bottom、left、right auto。
auto , auto left
, 。-->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="placement" data-toggle="tooltip" data-placement="bottom">data-placement</a>
<!--data-trigger hover foucs, tooltip,
: click、 manual。 , manual
。-->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="trigger" data-toggle="tooltip" data-trigger="click">data-trigger</a>
<!--data-delay 0, tooltip( ), ,
show/hide , , :{show:500,hide:100} jQuery -->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="delay" data-toggle="tooltip" data-delay="2000">data-delay</a>
<!--data-template HTML , :<div
class='tooltip'><div
class='tooltip-arrow'></div><div
class='tooltip-inner'></div></div>。-->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title="template" data-toggle="tooltip" data-template="<b>123<b/>">data-template</a>
<br>
<br>
<br>
<!--data-selector false, 。 , jQuery-->
<div id="selection">
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title=" " rel="tooltip" data-toggle="tooltip"> </a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title=" " data-toggle="tooltip"> </a>
</div>
<br>
<br>
<br>
<!-- , , , , 、
-->
<!--data-container false, tooltip 。
, , body 。
container : 'body', jQuery-->
<div class="btn-group">
<button class="btn btn-default" title=" " data-toggle="tooltip">1</button>
<button class="btn btn-default" title=" " data-toggle="tooltip">2</button>
<button class="btn btn-default" title=" " data-toggle="tooltip">3</button>
</div>
<br>
<br>
<br>
<br>
<!-- show、hide、toggle destroy -->
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" title=" " data-toggle="tooltip" id="clc"> </a>
<button class="btn btn-default" id="btn"> </button>
<script src="lib/jquery/jquery.js"></script>
<script src="lib/bootstrap/js/bootstrap.js"></script>
<script src="js/main.js"></script>
<script>
// $('a').tooltip();
/*selector*/
$('#selection').tooltip({
selector: 'a[rel=tooltip]'
});
/*container*/
$('button').tooltip({
delay: {
show: 100,
hide: 100
},
container: 'body'
});
/* */
$('#clc').tooltip({
trigger:'click'
});
$('#btn').on('click', function () {
$('#clc').tooltip('show');
/* $('#clc').tooltip('hide');
$('#clc').tooltip('toggle');
$('#clc').tooltip('destory');*/
});
/*4
* show.bs.tooltip
shown.bs.tooltip
hide.bs.tooltip
hidden.bs.tooltip
* */
$('a').on('show.bs.tooltip', function () {
alert(' ');
});
</script>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
부트스트랩 5 스티커Sticky는 페이지의 특정 영역에서 요소를 잠글 수 있도록 하는 구성 요소입니다. 수동 설치(zip 패키지) 부트스트랩 이미지 구성 요소를 활용하고 프로젝트에서 사용하려면 먼저 을 설치해야 합니다. MDB CLI ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.