<div id="divTest1">hi</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script type="text/javascript">
function DocumentReady(event)
{
console.log(event.type);
}
$('#divTest1').click(DocumentReady(event));
</script>
Question:
In chrome->console, it shows:Uncaught TypeError: Cannot read property 'type' of undefined
, so what is going wrong with the above codes?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…