Home >Backend Development >PHP Tutorial >onchange事件有什么用

onchange事件有什么用

PHPz
PHPzOriginal
2016-06-06 20:35:357499browse

onchange事件有什么用

onchange 事件怎么用?

定义和用法

onchange 事件会在域的内容改变时发生。

onchange 事件也可用于单选框与复选框改变后触发的事件。

语法

HTML 中:

<element onchange="SomeJavaScriptCode">

JavaScript 中:

object.onchange=function(){SomeJavaScriptCode};

参数 

SomeJavaScriptCode 必需。规定该事件发生时执行的 JavaScript。

实例

当用户改变input输入框内容时执行一段Javascript代码:

<input type="text" onchange="myFunction()">

更多相关技术知识,请访问PHP中文网

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn