📅  最后修改于: 2023-12-03 15:02:19.961000             🧑  作者: Mango
jQWidgets jqxNotification 是一个可以在 web 应用程序中显示提示信息的 JavaScript 库。render() 方法是 jqxNotification 中的一个用于渲染提示框的方法。
render(): void;
render() 方法用于将 jqxNotification 渲染到页面上。
在调用 render() 方法之前,需要按照以下步骤进行初始化:
<link rel="stylesheet" href="jqx.base.css" type="text/css" />
<link rel="stylesheet" href="jqx.light.css" type="text/css" />
<script src="jqxcore.js"></script>
<script src="jqxnotification.js"></script>
//创建 jqxNotification 对象
var notification = new jqxNotification({
width: 250,
position: "top-right",
opacity: 0.9,
autoClose: true,
autoCloseDelay: 3000
});
//设置提示信息的内容
notification.html("渲染完成");
//调用 render() 方法
notification.render();
完整的示例代码:
<!DOCTYPE html>
<html>
<head>
<title>jqxNotification render() 方法</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="jqx.base.css" type="text/css" />
<link rel="stylesheet" href="jqx.light.css" type="text/css" />
<script src="jqxcore.js"></script>
<script src="jqxnotification.js"></script>
<script>
$(document).ready(function () {
//创建 jqxNotification 对象
var notification = new jqxNotification({
width: 250,
position: "top-right",
opacity: 0.9,
autoClose: true,
autoCloseDelay: 3000
});
//设置提示信息的内容
notification.html("渲染完成");
//调用 render() 方法
notification.render();
});
</script>
</head>
<body>
</body>
</html>
调用 render() 方法之前,必须先调用 html() 方法设置提示信息的内容。
调用 render() 方法之后,提示框才能够正常显示。
render() 方法不需要传入任何参数。