user.js 514 B

1234567891011121314151617
  1. $(function () {
  2. $(".Js_closeBtn").click(function () {
  3. $(".adduser,.f_delete").fadeOut(200);
  4. });
  5. $(".Js_edit").click(function () {
  6. $(".adduser").fadeIn(200);
  7. });
  8. $(".Js_delete").click(function () {
  9. $(".f_delete").fadeIn(200);
  10. });
  11. $(".f_pormatBtn2").click(function () {
  12. $(".adduser,.f_delete").fadeOut(200);
  13. });
  14. $(".Js_closeBtn").on('click',function () {
  15. window.location.href="DeleteServlet?NEWSID="+this.id;
  16. });
  17. });