|
|
|
สอบถามการใช้ Onclick เรียกใช้ 2 functions ยังงัยค่ะ |
|
|
|
|
|
|
|
Code
<script type="text/javascript">
function stopWheel(e){
document.onmousewheel = function(){ stopWheel(); }
if(document.addEventListener){ /* Chrome, Safari, Firefox */
document.addEventListener('DOMMouseScroll', stopWheel, false); /* IE7, IE8 */
if(!e){ e = window.event; } /* IE7, IE8, Chrome, Safari */
if(e.preventDefault) { e.preventDefault(); } /* Chrome, Safari, Firefox */
e.returnValue = false; /* IE7, IE8 */
}
}
function restopWheel(e){
document.onmousewheel = null; /* IE7, IE8 */
if(document.addEventListener){ /* Chrome, Safari, Firefox */
document.removeEventListener('DOMMouseScroll', stopWheel, false);
}
}
</script>
<body style="height:2000">
<input type="button" value="button" [font=Verdana]onclick="stopWheel()[/font]"/>
<table width="100" height="1000"border="1" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</body>
ตรง onclick จะเรียก ฟังค์ชั่น restopWheel มาใช้ด้วยจะเขียนยังงัยค่ะ
Tag : JavaScript
|
|
|
|
|
|
Date :
2012-03-06 14:51:44 |
By :
beauwii |
View :
1836 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
<input type="button" value="button" onclick="fnc1();fnc2();"/>
|
|
|
|
|
Date :
2012-03-06 14:54:20 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="button" value="button" onclick="stopWheel();restopWheel();"/>
มันอ่านฟังค์ชันตัวหลังอย่างเดียวค่ะมันไม่อ่านตัวแรก
|
|
|
|
|
Date :
2012-03-06 15:02:40 |
By :
beauwii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่านครับ ยังไงต้องอ่าน
|
|
|
|
|
Date :
2012-03-08 10:05:26 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|