jQWidgets 是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、优化、独立于平台且得到广泛支持的框架。 jqxDraw 是一个基于 jQuery 的小型插件,用于使用 VML、SVG 和 HTML5 绘制形状和文本
off() 方法用于从指定 jqxDraw 小部件的元素中删除事件处理程序。
用法:
Instance.off(Element, click, function);
Parameters: 此方法接受三个参数,如下所示:
- Element: 这是指定的元素。
- click: 这是指定的事件。
- function: 这是删除事件处理程序的指定函数。
返回值:该方法不返回任何值。
链接文件:从给定链接下载 jQWidgets。在 HTML 文件中,找到下载文件夹中的脚本文件。
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdraw.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
例子:下面的例子说明了jQWidgets jqxDrawoff()方法。
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href=
"jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src=
"scripts/jquery-1.11.1.min.js">
</script>
<script type="text/javascript" src=
"jqwidgets/jqxcore.js">
</script>
<script type="text/javascript" src=
"jqwidgets/jqxdraw.js">
</script>
<script type="text/javascript" src=
"jqwidgets/jqx-all.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>jQWidgets jqxDraw off() Method</h3>
<div id="jqx_Draw" style="height:200px; width:700px;">
</div>
<input type="button" id="Button"
style="padding:5px 15px; margin-top:40px;"
value="Remove the event handler">
<div id="log"></div>
<script type="text/javascript">
$(document).ready(function () {
$('#jqx_Draw').jqxDraw();
var Instance = $('#jqx_Draw').jqxDraw('getInstance');
// Creating a circle with cx of 130, cy of 50,
// radius of 25 and parameters for filling the
// circle with green color
var Element = Instance.circle(130, 50, 25, {
fill: 'green'
});
var moveCircle = function () {
// Getting the Y coordinate of the circle's center
var Y_Coordinate = parseInt(Instance.getAttr(Element,
'cy'));
// Moving the circle down with 15 pixels
Instance.attr(Element, {
cy: Y_Coordinate + 15
});
};
// Adding a event handler
Instance.on(Element, 'click', moveCircle);
$("#Button").click(function () {
// Removing the applied event handler
Instance.off(Element, 'click', moveCircle);
Instance.refresh();
$("#log").html('Event handler has been removed.');
});
});
</script>
</center>
</body>
</html>
输出:
jQWidgets jqxDraw off() 方法
相关用法
- jQWidgets jqxDraw on()用法及代码示例
- jQWidgets jqxDraw measureText()用法及代码示例
- jQWidgets jqxDraw attr()用法及代码示例
- jQWidgets jqxDraw pieslice()用法及代码示例
- jQWidgets jqxDraw path()用法及代码示例
- jQWidgets jqxDraw circle()用法及代码示例
- jQWidgets jqxDraw refresh()用法及代码示例
- jQWidgets jqxDraw rect()用法及代码示例
- jQWidgets jqxDraw renderEngine属性用法及代码示例
- jQWidgets jqxDraw clear()用法及代码示例
- jQWidgets jqxDragDrop initFeedback属性用法及代码示例
- jQWidgets jqxDragDrop opacity属性用法及代码示例
- jQWidgets jqxDragDrop onDragEnd属性用法及代码示例
- jQWidgets jqxDragDrop onDrag属性用法及代码示例
- jQWidgets jqxDragDrop dropAction属性用法及代码示例
- jQWidgets jqxDragDrop onDragStart属性用法及代码示例
- jQWidgets jqxDragDrop data属性用法及代码示例
- jQWidgets jqxDragDrop distance属性用法及代码示例
- jQWidgets jqxDragDrop disabled属性用法及代码示例
- jQWidgets jqxDragDrop appendTo属性用法及代码示例
- jQWidgets jqxDragDrop dropTarget属性用法及代码示例
- jQWidgets jqxDragDrop dragZIndex属性用法及代码示例
- jQWidgets jqxDragDrop feedback属性用法及代码示例
- jQWidgets jqxDropDownList autoOpen属性用法及代码示例
- jQWidgets jqxDropDownList autoItemsHeight属性用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 jQWidgets jqxDraw off() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。