考慮下面的代碼如何查看函數值?
<input type="button" value="Submit" onclick="checkform(form); someotherfunction();"
其中checkform返回真或假,在一個形式中使用的功能。
我該如何檢查checkform()
的值是否爲false,然後取消輸入,以免它調用someotherfunction()
,如果它真的反之亦然。
我曾嘗試
<input type="button" value="Submit" onclick="return checkform(form); someotherfunction();"
其中這麼想的通話someotherfunction()
,因爲在所有它的返回無論值,我怎麼能檢查是否checkform()
是真實的,因此它可以再調用someotherfunction()
?
我不想檢查在someothefunction()
裏面的checkform()
的值,是否可以檢查<input
這一行?
你也可以做'onclick ='checkform(form)&& someotherfunction();「' – 2012-03-31 04:20:59
你和你的花哨短路...... /賤民 – canon 2012-03-31 04:29:42
戴伊拿着我們的if語句! – 2012-03-31 04:31:37