UK[pəˈzɪʃn] US[pəˈzɪʃən]

n. 位置、方向; 状態、地位; 態度; 状態

vt. 適切な位置に置く; 置く; 位置... ;駐屯部隊

三人称単数: 位置 複数形: 位置 現在分詞: 位置 過去形: 位置 過去分詞: 位置

JavaScriptの位置プロパティ 構文

機能:要素を静的、相対、絶対、または固定位置に配置します。

構文: Object.style.position=static|relative|absolute|fixed

JavaScriptの位置プロパティ 例

<html>
<head>
<style type="text/css">
input
{
position:relative;
}
</style>
<script type="text/javascript">
function setPositionAbsolute()
{
document.getElementById("b1").style.position="absolute";
document.getElementById("b1").style.top="10px";
}
</script>
</head>
<body>

<p>This is an example paragraph</p>
<p>This is an example paragraph</p>

<input type="button" id="b1" onclick="setPositionAbsolute()"
value="Set button position to be absolute" />

</body>
</html>

インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します