purazumakoiの[はてなブログ]

技術メモから最近はライフログも増えてきてます。

aタグとかでformをsubmit

元ネタはこちら

ボタンで画面遷移 - testVersion - 楽天ブログ(Blog)


↑サイトから引用

<script language="JavaScript" type="text/JavaScript">
<!-- 
function RUN(para){
    document.frm.action=para;
    document.frm.submit();
}
//-->
</script>


<input type="button" value="住所検索" onClick="RUN('index.html')">