ÍøÂçѧԺ

w3pop.com :: ÍøÂçѧԺ :: JavaScript :: JavaScript onmouseup ʼþ

»áÔ±µÇ½

ÕʺÅ

ÃÜÂë

»Ø´ð

¼ÇסÃÜÂë

Íü¼ÇÃÜÂë? ×¢²á

JavaScript onmouseup ʼþ


×÷Õß:w3pop.com ·­Òë/ÕûÀí:w3pop.com ·¢²¼:2007-04-28 ä¯ÀÀ:7575 :: ::

Definition and Usage
¶¨ÒåÓëÓ÷¨

The onmouseup event occurs when a mouse button is released.
µ±Êó±ê°´¼üËÉ¿ªÊ±´¥·¢onmouseupʼþ

Syntax
Óï·¨

onmouseup="ËùÒªÖ´ÐеĴúÂë"

Parameter
²ÎÊý
Description
×¢ÊÍ
SomeJavaScriptCode
ËùÒªÖ´ÐеĴúÂë
Required. Specifies a JavaScript to be executed when the event occurs.
±ØÑ¡Ïî¡£µ±Ê±¼ä´¥·¢Ê±ËùÒªÖ´ÐеĴúÂë

Supported by the following HTML tags:
ËùÖ§³ÖµÄHTML±êÇ©£º

<a>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <body>, <button>, <caption>, <cite>, <code>, <dd>, <dfn>, <div>, <dl>, <dt>, <em>, <fieldset>, <form>, <h1> to <h6>, <hr>, <i>, <img>, <input>, <kbd>, <label>, <legend>, <li>, <map>, <ol>, <p>, <pre>, <samp>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>, <th>, <thead>, <tr>, <tt>, <ul>, <var>

Supported by the following JavaScript objects:
ËùÖ§³ÖµÄJavaScript¶ÔÏó£º

button, document, link


Example 1
ʵÀý1

In this example an alert box is displayed when the mouse button is released after clicking the picture:
ÔÚÏÂÃæµÄÀý×ÓÖУ¬µ±Äãµã»÷ͼƬ²¢ËÉ¿ªÊó±êʱ½«µ¯³öÒ»¸öÏûÏ¢¿ò£º

<img src="image_w3default.gif" 
onmouseup="alert('Äãµã»÷¹ýͼƬ')">

The output of the code above will be (click on the picture):
ÉÏÊö´úÂëµÄÊä³ö½á¹ûΪ£º



Example 2
ʵÀý2

In this example an alert box will alert the tag name of the element you clicked on:
ÔÚÏÂÃæµÄÀý×ÓÖУ¬µ¯³öµÄÏûÏ¢¿ò½«ÏÔʾÄãËùµã»÷¹ýµÄÔªËØÃû³Æ£º

<html>
<head>
<script type="text/javascript">
function whichElement(e)
{
var targ
if (!e) var e = window.event
if (e.target) targ = e.target
else if (e.srcElement) targ = e.srcElement
if (targ.nodeType == 3) // defeat Safari bug
targ = targ.parentNode
var tname
tname=targ.tagName
alert("You clicked on a " + tname + " element.")
}
</script>
</head>
<body onmouseup="whichElement(event)">
<h2>This is a header</h2>
<p>This is a paragraph</p>
<img border="0" src="ball16.gif" alt="Ball">
</body>
</html>


Try-It-Yourself Demos
»¥¶¯ÑÝʾ

onmouseup
How to use onmouseup to display an alert box when an image is clicked.
ÈçºÎÓ¦ÓÃonmouseupʼþÔÚµã»÷Ò»ÕÅͼƬºóµ¯³öÏûÏ¢¿ò

onmouseup 2
How to use onmouseup to alert the tag name of the element you clicked on.
ÈçºÎÓ¦ÓÃonmouseupʼþºÍÏûÏ¢¿òÏÔʾÄãËùµã»÷µÄÔªËØÃû³Æ¡£

ÆÀÂÛ (0) All