button

button

button n. 按鈕,紐扣

HTML <button> 標籤

音標:['bʌt(ə)n]

基本介紹

  • 中文名: 按鈕,紐扣
  • 外文名:button 
  • 音標:['bʌt(ə)n]
  • 作用:對話框中的圖形元素,激活按鈕
英文單詞,html標籤,全局屬性,事件屬性,實例,

英文單詞

button n. 按鈕,紐扣
1、對話框中的一種圖形元素。當激活它時,能執行指定的功能。用戶可以採用以下方法來激活按鈕:用滑鼠在其上單擊,或者當按鈕獲得聚焦時按下“Return”或“Enter”鍵。
【英】A graphic element in a dialog box that, when activated,performs a specified function. The user activates a button by clicking on it with a mouse or, if the button has thefocus, by pressing the Return or Enter key。
2、滑鼠上的一個活動片,用於激活一些功能。舊式的滑鼠模型只有一個按鈕;新式一般有兩個或更多個按鈕
【英】On a mouse, amovable piece that is pressed to activate some function. Older mouse models have only one button; newer modelstypically have two or more.

html標籤

HTML <button> 標籤
定義和用法
<button> 標籤定義一個按鈕。
在 button 元素內部,您可以放置內容,比如文本或圖像。這是該元素與使用 input 元素創建的按鈕之間的不同之處。
<button> 控制項 與 <input type="button"> 相比,提供了更為強大的功能和更豐富的內容。<button> 與 </button> 標籤之間的所有內容都是按鈕的內容,其中包括任何可接受的正文內容,比如文本或多媒體內容。
例如,我們可以在按鈕中包括一個圖像和相關的文本,用它們在按鈕中創建一個吸引人的標記圖像。
禁止使用的元素是圖像映射,因為它對滑鼠和鍵盤敏感的動作會干擾表單按鈕的行為。
請始終為按鈕規定 type 屬性。Internet Explorer 的默認類型是 "button",而其他瀏覽器中(包括 W3C 規範)的默認值是 "submit"。

全局屬性

<button> 標籤支持HTML 的全局屬性。

事件屬性

<button> 標籤支持HTML 的事件屬性。

實例


<html>
<head>
<script type="text/javascript">
function whichButton(event)
{
if (event.button==2)
{
alert("You clicked the right mouse button!")
}
else
{
alert("You clicked the left mouse button!")
}
}
</script>
</head>
<body onmousedown="whichButton(event)">
<p>Click in the document. An alert box will
alert which mouse button you clicked.</p>
</body>
</html>

相關詞條

熱門詞條

聯絡我們