當滑鼠指標移到影像上時執行一段 JavaScript:登入後複製#定義和用法onmousemove 屬性在滑鼠指標移到元素上時觸發。 註解:onmousemove 屬性不適用下列元素:、、、、、、、、、、、; 、、<style> 或<title>。 </p><p>HTML 4.01 與 HTML5 之間的差異:無。 </p><p>語法</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><element onmousemove="script"></pre><div class="contentsignin">登入後複製</div></div><p>屬性值 值 說明</p><p>#script onmousemove 發生時所執行的腳本。 </p><p>當 <input> 元素內的文字被選中後執行一段 JavaScript:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><input type="text" onselect="showMsg() value="Hello world!"></pre><div class="contentsignin">登入後複製</div></div><p>定義和用法</p><p>onselect 屬性在元素中的文字被選中時觸發。 </p><p>onselect 屬性可用於下列元素內:<input type="file">、<input type="password">、<input type="text">、<keygen> ; 以及<textarea>.</p><p>HTML 4.01 與HTML5 之間的差異</p><p>#無。 </p><p>語法</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><element onselect="script"></pre><div class="contentsignin">登入後複製</div></div><p>屬性值 值 說明</p><p>script onselect 發生時所執行的腳本。 </p><p style="margin: 0px; padding: 0px; border: 0px; font-size: 18px; color: rgb(63, 63, 63); font-family: 微软雅黑; white-space: normal; background-color: rgb(253, 252, 248);">實例</p><p>當使用者按鍵時執行一段JavaScript:</p><p><input type="text" <a href="http://www.php.cn/wiki/1461.html" target="_blank">onkeypress</a>="<a href="http://www.php.cn/wiki/927.html" target="_blank">display</a>Result()"><br/></p><p>定義和用法</p><p>onkeypress 屬性在使用者(在鍵盤上)按鍵時觸發。 </p><p>提示:相對於onkeypress 事件的事件順序:</p><p><a href="http://www.php.cn/wiki/1460.html" target="_blank">onkeydown</a> onkeypress <a href="http://www.php.cn/wiki/1462.html" target="_blank">onkeyup</a></p><p>註解:在任何瀏覽器中,onkeypress 事件不會被所有按鍵觸發(例如ALT、CTRL、SHIFT、ESC)。 </p><p>註解:onkeypress 屬性不適用於下列元素:<base>、<bdo>、<br>、<head>、<html>、<iframe>、<meta>、<html>、<iframe>、<meta>、 <param>、<script>、<style> 或<title>。 </p><p>HTML 4.01 與 HTML5 之間的差異</p><p>無。 </p><p>語法</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><element onkeypress="script"></pre><div class="contentsignin">登入後複製</div></div>