mysql和oracle的區(qū)別有什么 PHP怎么實現(xiàn)一單擊按鈕就跳轉(zhuǎn)到令一個頁面?
PHP怎么實現(xiàn)一單擊按鈕就跳轉(zhuǎn)到令一個頁面?直接在按鈕使用onclick="window.location.href="要跳轉(zhuǎn)的網(wǎng)站""例如:<input type="button" value=
PHP怎么實現(xiàn)一單擊按鈕就跳轉(zhuǎn)到令一個頁面?
直接在按鈕使用onclick="window.location.href="要跳轉(zhuǎn)的網(wǎng)站""例如:<input type="button" value="跳轉(zhuǎn)" onclick="window.location.href="a.php""/>或者是使用一個點(diǎn)擊函數(shù)傳入值:<input type="button" value="跳轉(zhuǎn)" onclick="tiao("a.php")"/><script type="text/javascript"> function tiao(urls){ window.location.href=urls//根據(jù)傳過來的地址跳轉(zhuǎn)}</script>