我需要这个 Jquery 代码的纯 JavaScript 等价物:因为在我当前的项目中不允许使用库,
文件 handler.js
$(document).ready(function(){
$("#some_button").click(function(){
alert('ok. works');
});
});
文件 index.html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="handler.js"></script>
<head>
<body>
<button id="some_button">Btn</button>
</body>
</html>