以下是关于 jQuery UI Tooltips 内容选项的详细攻略:
jQuery UI Tooltips 内容选项
内容选项用于指定工具提示小部件的内容。
语法
$(selector).tooltip({
content: "这是工具提示的内容"
});
参数
- content:工具提示小部件内容。
示例一:使用文本作为工具提示小部件的内容
<!DOCTYPE html>
<html>
<head>
<title>jQuery Tooltips 内容选项示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
</head>
<body>
<p title="这是一个工具提示" data-tooltip-content="这是工具提示的内容">鼠标悬停在这里</p>
<script>
$( "p" ).tooltip({
content: function() {
return $( this ).attr( "data-tooltip-content" );
}
});
</script>
</body>
</html>
这将创建一个工具提示小部件,其内容为 “这是工具提示的内容”。
示例二:使用 HTML 元素作为工具提示小部件的内容
<!DOCTYPE html>
<html>
<head>
<title>jQuery Tooltips 内容选项示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
</head>
<body>
<p title="这是一个工具提示" data-tooltip-content="<strong>这是工具提示的内容</strong>">鼠标悬停在这里</p>
<script>
$( "p" ).tooltip({
content: function() {
return $( this ).attr( "data-tooltip-content" );
}
});
</script>
</body>
</html>
这将创建一个工具提示小部件,其内容为 “这是工具提示的内容”,并使用 strong 元素使其粗。
总结:
内容选项用于指定工具提示小部件的内容。可以使用文本或 HTML 元素作为工具提示小部件内容。
以上是关于 jQuery UI Tooltips 内容选项的详细攻略,包括语法和示例。