我刚开始学习JavaScript,我遇到的第一批代码就是onclick。
我见过它的唯一例子是表单按钮,例如:
<input type="button" onclick="checkName()" value="Check name" />
我很好奇其他什么html元素可以点击运行javascript?
如果能列出所有可能的类型,那就太好了,谢谢!
答案 0 :(得分:3)
每个元素都可以点击。
答案 1 :(得分:1)
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>