JavaScript submit時のconfirm()

2010年01月27日(水)

submit時の確認用、簡単なサンプルです。

html側

〜略〜

js側

function startConfirm(message){
	return (confirm(message));
}