fuc.js:fucntion test(){
    alert("test");
}
test.html...
<input type="text" onblur="test()">
...
没反应,有错误!直接这样写就正常:...
<input type="text" onblur="alert('test');">
...
注:func.js里的其它函数都正常