- Prototype 教程
- Prototype - 主页
- Prototype - 简要概览
- Prototype - 有用功能
- Prototype - 实用方法
- Prototype - 元素对象
- Prototype - 数字处理
- Prototype - 字符串处理
- Prototype - 数组处理
- Prototype - 哈希处理
- Prototype - 基本对象
- Prototype - 模板
- Prototype - 枚举
- Prototype - 事件处理
- Prototype - 表单管理
- Prototype - JSON 支持
- Prototype - AJAX 支持
- Prototype - 表达范围
- Prototype - 定期执行
- Prototype 有用资源
- Prototype - 快速指南
- Prototype - 有用资源
- Prototype - 讨论
Prototype - absolutize() 方法
此方法将元素转变为绝对定位元素,而不会改变其在页面布局中的位置。
语法
element.absolutize();
返回值
绝对定位的 HTML 元素。
示例
<html>
<head>
<title>Prototype examples</title>
<script type = "text/javascript" src = "/javascript/prototype.js"></script>
<script>
function changetoAbs() {
node = $("firstDiv");
node.style.fontSize='20px';
// node.style.position = 'absolute';
node.absolutize();
node.style.border = '1px dashed #f00';
node.style.left = '100px';
}
</script>
</head>
<body>
<div id = "firstDiv">
<p>This is first paragraph</p>
</div>
<br />
<input type = "button" value = "Make Absolute" onclick = "changetoAbs();"/>
</body>
</html>
输出
prototype_element_object.htm
广告