以下是关于 jQuery UI Tooltips enable() 方法的详细攻略:
jQuery UI Tooltips enable() 方法
enable() 方法用于启用工具提示小部件。
语法
$(selector).( "enable" );
参数
无。
示例一:启用工具提示小部件
<!DOCTYPE html>
<html>
<head>
<title>jQuery Tooltips enable() 方法示例</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/base/jquery-ui.css">
</head>
<body>
<p title="这是一个工具提示">鼠标悬停在这里</p>
<button id="enable">启用工具提示</button>
<script>
$( "p"tooltip({
disabled: true
});
$( "#enable" ).click(function() {
$( "p" ).tooltip( "enable" );
});
</script>
</body>
</html>
这将创建一个工具提示小部件,并在单击按钮时启用它。
示例二:启用多个工具提示小部件
<!DOCTYPE html>
<html>
<head>
<title>jQuery Tooltips enable() 方法示例</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="这是一个工具提示">鼠标悬停在这里</p>
<p title="这是另一个工具提示">鼠标悬停在这里</p>
<button id="enable">启用工具提示</button>
<script>
$( "p" ).tooltip({
disabled: true
});
$( "#enable" ).click(function() {
$( "p" ).tooltip( "enable" );
});
</script>
</body>
</html>
这将创建两个工具提示小部件,并在单击按钮时启用它们。
总结:
enable() 方法用于启用工具提示小部件。可以启用单个或多个工具提示小部件。
以上是关于 jQuery UI Tooltips enable() 方法的详细攻略,包括语法和示例。