A question about pressing enter

When i keydown “enter” , i will make some button click by javascript.ex.

if (e.keyCode == 13)

{

document.forms[0].comfirm.click();

}

Notes sometimes does the submitting,but sometimes does nothing.

why?

And how could i prevent my page from being submitting?