1、$(function(){ $("#a").click(function(){ //adding your code here }); }); 2、$(document).ready(function(){ $("#a").click(function(){ //adding your code here }); }); 3、window.Onload= function(){ $("#a").click(function(){ //adding your code here }); } html代码为点击,且页面需要引用jquery的js文件