我想在不使用this
关键字的情况下选择一个元素 id,我在函数中设置了一个参数。该参数有一条消息。
<head>
<script type="text/javascript" src="jquery-1.8.3.js"></script>
<script type="text/javascript">
function check(msg){
alert(msg)
}
</script>
</head>
<body>
<input type="text" id="me" onblur="check('this is test')" />
</body>
</html>