<!DOCTYPE html>
<html>
<head>
<script>
function mouseUp()
{
alert('You just clicked the text!');
}
</script>
</head>
<body>
<p onmouseup="mouseUp()">Click the text,but don't raise your finger rapidly!</p>
</body>
</html>