我試過幾個簡單的jQuery操作<button>
標籤,但由於某些原因,在IE7上無法正常工作。<button>在IE7中
<!-- HTML -->
<button class="button">Hello</button>
// jQuery, using v1.4.4
$('button').html('Hello World!'); // Works on Firefox and IE7.
$('button').addClass('another-class'); // Works on Firefox; *not* on IE7.
$('button').wrapInner('<span></span>'); // Works on Firefox; *not* on IE7.
有沒有人有任何線索呢?
也許與這裏描述的行爲有關:http://www.peterbe.com/plog/button-tag-in-IE? – jao