當滑鼠事件被觸發時,clientX滑鼠事件屬性用於取得滑鼠指標的水平座標。這是根據當前視窗。
您可以嘗試執行以下程式碼來了解如何實現clientX# JavaScript 中的滑鼠事件。
<!DOCTYPE html> <html> <body> <p onclick = "coordsFunc(event)"> Click here to get the x (horizontal) and y (vertical) coordinates (according to current window) of the mouse pointer. </p> <script> function coordsFunc(event) { var x_coord = event.clientX; var y_coord = event.clientY; var xycoords = "X coords= " + x_coord + ", Y coords= " + y_coord; document.write(xycoords); } </script> </body> </html>
以上是在JavaScript中,clientX滑鼠事件的作用是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!