我有以下代码:
function iAgree(){
alert("Hello");
jQuery('#openAccount').hide();
jQuery('#submitDetails').show();
}
我使用以下方法调用它:
<div class="openAccWraper">
<div class="openAccDetail"> </div>
<div class="questionContact">
<input type="checkbox" name="iAgree" id="iAgree" value="1" />
</div>
</div>
<a href="#" onclick="iAgree();"><img src="img/btnSubmitDet.png" border="0" /></a>
我收到以下错误:
Uncaught TypeError: object is not a function