You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
789 B
26 lines
789 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>鼠标悬停提示</title>
|
|
<!-- 引用Layui框架 -->
|
|
<link rel="stylesheet" href="https://www.layuicdn.com/layui/css/layui.css" media="all">
|
|
</head>
|
|
<body>
|
|
<!-- Layui switch -->
|
|
<input type="checkbox" name="switch" lay-skin="switch" lay-text="ON|OFF" title="点击开关">
|
|
|
|
<!-- Layui checkbox -->
|
|
<input type="checkbox" name="like[write]" lay-skin="primary" title="点击我选中或取消选中">
|
|
|
|
<!-- 引用jquery和Layui的JS文件 -->
|
|
<script src="https://www.layuicdn.com/layui/layui.js"></script>
|
|
<script type="text/javascript">
|
|
//初始化Layui
|
|
layui.use(['form'], function(){
|
|
var form = layui.form;
|
|
form.render();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |