<code class="lang-js">jQuery(function(){ jQuery("#upload").change(function(){ jQuery('#uploadForm').submit(); }) }) </code>
在ff 和chrome下都能触发事件,但是IE仍然无动于衷
<code class="lang-js">jQuery(function(){ jQuery("#upload").change(function(){ jQuery('#uploadForm').submit(); }) }) </code>
在ff 和chrome下都能触发事件,但是IE仍然无动于衷
用.on
https://api.jquery.com/on/
<code class="lang-javascript">$("#test").on('change', function() { alert('ok'); }); </code>