2015-02-06 75 views

回答

0

可以轻松实现使用jQuery这个功能,像这样:

$("#myButton").one("click", function() { 
    'Code to run when the button is clicked. 
}); 

你可以阅读更多关于它here