加载中...

取得对象的编号


调试运行

<html>
<head>
<title>取得对象的编号</title>
</head>
<body>
<script language="javascript">
<!--
	function showID(obj){
		alert(obj.id);
	}
//-->
</script>
<input type="button" value ="显示" id="bt" onClick="showID(this)">
</body>
</html>

还没有评论.