明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

在html靜態(tài)頁面中給button加上提交鏈接的方法說明

[摘要]1、按鈕做成鏈接(圖片)的樣子提交按鈕<input type="submit" value="提交">提交鏈接<a href="#" onclick="表單名字.submit()">提交<...
1、按鈕做成鏈接(圖片)的樣子
提交按鈕

<input type="submit" value="提交">

提交鏈接

<a href="#" onclick="表單名字.submit()">提交</a>

重置按鈕

<input type="reset" value="重置">

重置鏈接

<a href="#" onclick="表單名字.reset()">重置</a>

普通按鈕

<input type="button" value="按鈕" onclick="函數(shù)()">

普通鏈接

<a href="#" onclick="函數(shù)()">鏈接</a>

至于圖片也一樣把a標(biāo)簽換成img
2、鏈接做成按鈕的樣子

<a href="reg.asp">注冊</a>
=><input type="button" value="注冊" onclick="location.href='reg.asp'">

-----------------------------------
有的時候我們完全可以手工做一個get方式的表單,至于用按鈕還是鏈接隨心所欲。

<form action="xx.asp" method="get" name="form1">
  <input name="aa" type="text" id="aa">
  <input name="bb" type="text" id="bb">
  <input type="submit" name="Submit" value="提交">
</form>
=>
<input name="aa" type="text" id="aa">
<input name="bb" type="text" id="bb">
<input type="button" value="按鈕" onclick="location.href='xx.asp?aa='+document.all['aa'].value+'&bb='+document.all['bb'].value">

-----------------------------------
進一步說我們還可以做一個按鈕(鏈接)來同時傳遞js變量,表單input的值,asp變量,Recordset值

<script language="javascript">
var id1=1;
</script>
<%
id3=3
....
rs.open exec,conn,1,1
假設(shè)有rs("id4")=4
...
%>
<input name="id2" type="text" id="id2" value="2">
<input type="button" value="按鈕"
onclick="location.href='xx.asp?id1='+id1+'&id2='+document.all['id2'].value+'&id3=<%=id3%>&id4=<%=rs("id4")%>'">

我們按下按鈕會看到瀏覽器的url是xx.asp?id1=1&id2=2&id3=3&id4=4
在xx.asp中我們就可以用request.querystring來得到所有變量,這樣是不是變相的客戶端js和服務(wù)器段的變量傳遞?
------------------------------------------------------------------------------------------------------------------------------
如何給按鈕加上鏈接功能

解決思路:
按鈕屬于控件級的對象,優(yōu)先級比較高,所以不能象圖片或文本一樣直接加鏈接,只能通過按鈕的單擊事件調(diào)用腳本的方式來實現(xiàn)。
具體步驟:
1.在原窗口打開鏈接

    <input type="button" 
value="閃吧" onClick="location=’http://www.xxx.net’">
    <button onClick="location.href=’http://www.xxxx.net’">閃吧</button>
    <form action="http://www.xxxx.net%22%3e%3cinput/ type="submit" value="打開鏈接"></form>

2.在新窗口中打開鏈接

<input type="button" 
value="閃吧" onClick="window.open(’http://www.xxxx.net’)">
    <button onClick="window.open(’http://www.xxxx.net’)">ggg</button>
    <form action="http://www.xxxx.net/" 
target="_blank"><input type="submit" value="打開鏈接"></form>


注意:onClick調(diào)用的代碼里的引號在只有一重時可以單雙嵌套,超過兩重就必須用"\"號轉(zhuǎn)義且轉(zhuǎn)義的引號必須跟里層的引號一致,如:

<button onClick="this.innerHTML=’<font color=\’red\’>http://www.xxxx.net</font>’">閃吧</button>


<button onClick=’this.innerHTML="<font color=\"red\">http://www.xxxx.net</font>"’>閃吧</button>

而下面都是錯誤的寫法:

<button onClick="this.innerHTML=’<font color=’red’>http://www.xxxx.net</font>’">閃吧</button>
<button onClick="this.innerHTML=’<font color="red">http://www.xxxx.net</font>’">閃吧</button>
<button onClick="this.innerHTML=’<font color=\"red\">http://www.xxxx.net</font>’">閃吧</button>

提示:大部分屬于window或document對象的方法和屬性都可以省略前綴window或document,比如說本例中的location.href(location.href又可以簡寫為location,因為location的默認(rèn)對象為href)就是window.location.href或document.location.href的省略式寫法。

技巧:本例中還可以用下面的方法來代替location.href

location.replace(url)
location.assign(url)
navigate(url)

特別提示

第一步中的代碼運行后,單擊按鈕將跳轉(zhuǎn)到鏈接目標(biāo)。而第二步的在單擊按鈕后將在新窗口中打開鏈接。

特別說明

本例主要是通過用onClick捕獲用戶在按鈕上的單擊事件,然后調(diào)用location對象的href方法或window對象的open方法來打開鏈接。另外一個技巧是通過提交表單來實現(xiàn)鏈接功能,按鈕必須是type=submit類型的按鈕,表單的action值就是鏈接目標(biāo),target值就是鏈接打開的目標(biāo)方式。

以上就是在html靜態(tài)頁面中給button加上提交鏈接的方法介紹的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護的網(wǎng)站。