JavaScriptは、自身のオブジェクトを取得します.

640 ワード

<html>

<head>

<script>
function getSelf(e){
	alert ("id:"   + e.id);
	alert ("name:" + e.name)
}
</script>

</head>

<body>
	<input id="sex_0" type="radio" name="sex" onclick="getSelf(this)"><label for="sex_0"> </label>
	<input id="sex_1" type="radio" name="sex" onclick="getSelf(this)"><label for="sex_1"> </label>
</body>

</html>