main.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. * 处理双击编辑
  3. */
  4. function edit()
  5. {
  6. if($(".edit").length)
  7. {
  8. $(".edit").each(function()
  9. {
  10. $(this).bind('dblclick', function()
  11. {
  12. var col = $(this).attr('data-col');
  13. var url = $(this).attr('data-url');
  14. var id = $(this).attr('data-id');
  15. var type = $(this).attr('data-type');
  16. var html = $(this).text();
  17. if(html.indexOf('input') == -1)
  18. {
  19. $(this).html('<input type="text" name="edit" id="edit" value="'+html+'">');
  20. var self = $(this);
  21. self.find("#edit").blur(function()
  22. {
  23. var value = self.find("#edit").val();
  24. if(!value)
  25. {
  26. alert('不能为空');
  27. return;
  28. }
  29. if($(this).find(".edit-content").length)
  30. {
  31. $(this).find(".edit-content").html(value);
  32. }
  33. else
  34. {
  35. self.attr('data-content', value);
  36. }
  37. self.html(value);
  38. $.post(url, {value:value,id:id,type:type,col:col}, function(t)
  39. {
  40. //notify('修改成功');
  41. })
  42. })
  43. }
  44. });
  45. })
  46. }
  47. }
  48. $(function()
  49. {
  50. edit();
  51. });