哪些HTML元素可以用javascript做成可点击的

What HTML elements can be made clickable with javascript?

本文关键字:HTML 元素 哪些 javascript      更新时间:2023-09-26

我刚开始学习JavaScript,我遇到的第一个代码就是onclick。

我所见过的唯一的例子是使用它的表单按钮,例如:

<input type="button" onclick="checkName()" value="Check name" />

我很好奇还有什么其他html元素可以点击来运行javascript?

如果你能列出所有可能的类型就太好了,谢谢!

每个元素都可以设置为可点击

onclick可以与以下标签一起使用:

<a> <abbr> <acronym> <address> <area> <b> <big> <blockquote> <body> <button> <caption>     <center> <cite> <code> <col> <colgroup> <dd> <del> <dfn> <dir> <div> <dl> <dt> <em> <fieldset> <form> <h1> <h2> <h3> <h4> <h5> <h6> <hr> <i> <img> <input> <ins> <kbd> <label> <legend> <li> <link> <map> <menu> <noframes> <noscript> <object> <ol> <optgroup> <option> <p> <pre> <q> <s> <samp> <select> <small> <span> <strike> <strong> <sub> <sup> <table> <tbody> <td> <textarea> <tfoot> <th> <thead> <tr> <tt> <u> <ul> <var>

编辑. .比较容易判断哪些不支持onclick:

<base> <bdo> <br> <head> <html> <iframe> <meta> <param> <script> <style> <title>