每當用戶觸摸HTML元素時,就會使用touchstart事件執行腳本。觸摸特定元素時,如果touchstart事件與之關聯,則可以使用它觸發javascript函數。
注意:touchstart事件僅在觸摸屏設備上起作用。
用法:
object.ontouchstart = myScript;
以下示例程序旨在說明touchstart事件:
程序:當用戶觸摸P元素時執行JavaScript。
<!DOCTYPE html>
<html>
<head>
<title>touchstart event in HTML</title>
<style>
h1
{
color:green;
}
h2
{
font-family:Impact;
}
body
{
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>touchstart event</h2><br>
<!-- On touching this P element, the start()
function is trigerred -->
<p ontouchstart="start()">
Touch somewhere in the paragraph to
trigger a function.
</p>
<br>
<p id="test"></p>
<script>
function start()
{
document.getElementById("test").innerHTML =
"Paragraph has been touched";
}
</script>
</body>
</html>
輸出:
觸摸屏幕後
支持的網頁瀏覽器
- Opera
- IE瀏覽器
- 穀歌瀏覽器
- Firefox
- 蘋果Safari
相關用法
- HTML onunload事件用法及代碼示例
- HTML touchmove事件用法及代碼示例
- HTML onwheel事件用法及代碼示例
- HTML onsuspend事件用法及代碼示例
- HTML onmessage事件用法及代碼示例
- HTML ondragover事件用法及代碼示例
- HTML touchcancel事件用法及代碼示例
- HTML onpaste事件用法及代碼示例
- HTML onsubmit事件用法及代碼示例
- HTML ontimeupdate事件用法及代碼示例
- HTML onselect事件用法及代碼示例
- HTML onseeking事件用法及代碼示例
- HTML onsearch事件用法及代碼示例
- HTML onseeked事件用法及代碼示例
- HTML ontoggle事件用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM touchstart Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。