2015-07-13 60 views
0

HTML:在jQuery的屬性onchange事件

<input class="spinner1 ui-spinner-input" id="q1" name="value" value="1" min="1" aria-valuemin="1" aria-valuenow="5" autocomplete="off" role="spinbutton"> 

如何在不斷變化的aria-valuenow值添加一個事件?

+1

是什麼讓'詠歎調,valuenow'屬性的改變? –

+3

希望這會幫助你http://stackoverflow.com/questions/16781778/detecting-attribute-change-of-value-of-an-attribute-i-made – Butterfly

回答

3

所有瀏覽器都不支持本地方式來執行此操作,您可以在Mutation_Events上查看外觀,但該功能不完全正常。

您可以但是,觸發這種情況正在改變,你自定義的屬性項的自定義事件,並聽取這一事件做出必要的改變:

$(document).on('custom-attribute-changes', function() { 
    // listen to the data change and do what you need 
    }); 

    $('#button').click(function() { 

// trigger this event on any certain change that shall edit its value 
    $(document).trigger('custom-attribute-changes'); 
    });