<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/jquery.js"></script> <script> var jq = jQuery.noConflict(); </script> <script> window.onload = function(){ jq(‘#btnok‘)[0].onclick = function(){ alert(‘hello‘); } } </script> </head> <body> <input type="button" id="btnok" value="OK" /> </body> </html>
这样做主要还是为了在实际开发中 $符号被占用,使用jquery官方也为我们提供了接口改变,从而jquery变得更加的灵活多态
时间: 2024-10-25 15:19:18