你只是定义了函数,又不是定义了自执行函数,你要把该函数执行才行。比如:window.onload=function(){ //定义find函数。 function find(){...}//执行find函数。 find();};