|
|
|
ต้องการให้ javascript เครื่องคิดเลข แสดงผลตรงที่ เคอเซอร์ กระพริบอยู่ |
|
|
|
|
|
|
|
Code (JavaScript)
<!doctype html>
<html>
<head>
<meta charset = "utf-8">
<script type = "text/javascript">
window.addEventListener ("load", function () {
var input = document.getElementsByTagName ("input");
input[0].addEventListener ("keydown", function () {
alert ("Caret position: " + this.selectionStart);
// You can also set the caret: this.selectionStart = 2;
}, false);
}, false);
</script>
<style></style>
<title>Test</title>
</head>
<body>
<input type = "text" />
</body>
</html>
|
|
|
|
|
Date :
2012-10-24 09:34:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงบรรทัดเริ่มที่ 230
ตัวลิงค์ไปที่เครื่องคิดเลขทำไว้แค่ฟิลด์เดียวเองครับ ลองเพิ่มฟิลด์ที่เหลือให้ครบ
Code (JavaScript)
<input name="pep1" type="text" id="pep1"/>
<a href="#" onclick="openCalculator();return false">
<img src="http://www.codetukyang.com/java/images2/calclose.gif" style="position:relative;top:-1px" width="13" height="13"/></a><br>
<input name="pep2" type="text" id="pep2"/><br>
<input name="pep3" type="text" id="pep3"/><br>
<input name="pep4" type="text" id="pep4"/><br>
<input name="pep5" type="text" id="pep5"/><br>
|
|
|
|
|
Date :
2012-11-02 17:07:23 |
By :
dreamlover |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|