2014-05-10 4 views
0

나는 아두 이노에서이 코드를 사용하지만이 onmousedown 작업과 어떤이 코드에 location.href=/?off13을 의미하지 수행하는 방법 : 사용자가 요소 위로 마우스 버튼을 누를 때무슨 의미의 onmousedown입니까?

client.println("<input type=button value=OFF style='width:150px' onmousedown=location.href='/?off13;'>"); 
if(readString.indexOf('12') >0)//checks for 6 
{ 
    digitalWrite(7, HIGH); // set pin 7 high 
    Serial.println("Led 7 On"); 
} 

if(readString.indexOf('13') >0)//checks for 7 
{ 
    digitalWrite(7, LOW); // set pin 7 low 
    Serial.println("Led 7 Off"); 
} 

답변

2

onmousedown 이벤트가 발생합니다.

<p onmousedown="myFunction()">Click the text!</p> 

The onmousedown attribute is similar to the onclick attribute, but differs in that the event is triggered the moment the mouse button is pressed on the element, rather than at the point at which the mouse button is released (onclick is effectively a combination of onmousedown and onmouseup event on the element)

href를 속성 집합 또는 현재 페이지의 전체 URL을 반환합니다. 당신이하면 onMouseDown 이벤트를 이해하는

location.href=URL 
+0

답장을 보내 주셔서 감사합니다. 그러나 의미는 무엇입니까? – MohammadTofi

0

다음 링크는 도움이 될 것입니다 : ...

그리고 코드에서

는, location.href=/?off13가 값 (13)을 통과 행운의

click, mousedown, mouseup, dblclick

최저 쿼리 문자열 ...