我正在尝试初始化基础工具提示而不初始化所有内容(即$(document).foundation()
)并且我在这个简单的任务中失败了。
我想知道(1)如何使用new Foundation.Tooltip
代替(2)我需要modernizr
因为documentation in foundation website没有提及modernizr作为要求。
我提到了modernizr
,因为没有这个工具提示就不会有任何样式,也不会显示html。
谢谢
<!DOCTYPE html>
<meta name="robots" content="noindex">
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script> -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.3.1/js/foundation.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.3.1/css/foundation.css" />
<body>
<div class="row">
<span class="has-tip" title="Tooltips are awesome, you <a>link</a> totally use them!">
Hover me
</span>
</div>
<script id="jsbin-javascript">
$(document).ready(function() {
new Foundation.Tooltip($(".has-tip"), {
allowHtml: true
});
// $(document).foundation();
})
</script>
</body>
</html>
答案 0 :(得分:5)
我之前没有和基金会合作,所以我绝对不是专家。但是,我想我已经弄清楚为什么你的代码无法正常工作。
您可以获取所需的所有链接,并查看位于此处的CodePen中的代码工作示例:http://codepen.io/SupposedlySam/pen/ybbYMp。
head
关闭之前放置在body
标记或其他所有脚本之下(通过Foundation's JavaScript Setup Page)tabIndex
。"
而不是双引号("
),并且不能使用反斜杠(\
)对其进行转义。答案 1 :(得分:4)
首先回答第二部分:基础6并不需要Modernizr(但是F5没有)(参见:http://foundation.zurb.com/forum/posts/37234-modernizr-and-foundation-6)所以你可以完全使用所有的Foundation 6组件而不用 Modernizr。
在您的示例中,我认为您正在动态地混合 creating 工具提示:
String
使用 initialising 提供工具提示:
new Foundation.Tooltip($(".has-tip"), {
allowHtml: true
});
OR
$(document).foundation(); // initialise ALL Foundation script - usually required by Foundation generally
所以要创建 JUST 工具提示,然后初始化
$('.has-tip').foundation() // just scripts associated with this element (e.g. tooltips)
由于显而易见的原因,创建必须在初始化之前。
答案 2 :(得分:4)
如果您不想在整个文档中初始化基础,可以在特定元素上初始化它,例如:
$('.has-tip').foundation();
基础不依赖于现代化者,没有现代化者就没有任何问题。
和一个工具提示的codepen而不调用document.foundation: