1. 程式人生 > >新增網站跳轉的兩種方式小結

新增網站跳轉的兩種方式小結

例如:
<form action="index.html">
        name:<input type="text" name="username">
        password:<input type="password" name="password">
        <input type="submit" value="提交">
</form>這是完整表單,提交後跳轉到index.html頁面
還有一種就是不用form,直接使用<input type="submit" name="Submit" onclick="javascript:window.location.href='index.html'” value="提交" />這種就是單獨使用按鈕