this

種類命令
書式 this
解説
オブジェクト自身を示します。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
form { position:absolute; top:10;left:10px; }
--></style>
<script type="text/javascript"><!--
function calc(a,b)
{
this.mul = a * b;
this.div = a / b;
this.add = a + b;
this.sub = a - b;
}
window.onload = function()
{
cObj = new calc(2,3);
document.getElementById("txtField").value = cObj.add;
}
// --></script>
</head>
<body>
<img src="Default.png">
<form>
<input type="text" id="txtField" size=40"><br>
</form>
</body>
</html>
実際のスクリプトをダウンロード