function _doPostBack(eventTarget,eventArgument){
if(!theForm.onsubmit||(theForm.onsubmit()!=false)){
theForm._EVENTTARGET.value = eventTarget;
theForm._EVENTARGUMENt.value = eventArgument;
theForm.submit();
}
}
這段代碼是什麼意思?作用是什麼?onsubmit是什麼?onsubmit()是什麼?
判斷表單是否有onsubmit事件,有就執行這個事件得到返回值,如果返回值不是false就提交表單。這個是asp.net自動注冊的js代碼