Home 按钮置灰
Post
Cancel

按钮置灰

1
2
3
4
5
6
$(document).ready(function() {
  $("#button_li").click(function() {
	  $(this).css("pointer-events", "none");
	  $(this).css("background-color", "gray"); 
  });
});
This post is licensed under CC BY 4.0 by the author.