placeholder.IE.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. (function($, undefined) {
  2. $.fn.placeholder = function(options) {
  3. var defaults = {
  4. labelMode: false,
  5. labelStyle: {},
  6. labelAlpha: false,
  7. labelAcross: false
  8. };
  9. var params = $.extend({}, defaults, options || {});
  10. //方法
  11. var funLabelAlpha = function(elementEditable, elementCreateLabel) {
  12. if (elementEditable.val() === "") {
  13. elementCreateLabel.css("opacity", 0.4).html(elementEditable.data("placeholder"));
  14. } else {
  15. elementCreateLabel.html("");
  16. }
  17. }, funPlaceholder = function(ele) {
  18. // 为了向下兼容jQuery 1.4
  19. if (document.querySelector) {
  20. return $(ele).attr("placeholder");
  21. } else {
  22. // IE6, 7
  23. var ret;
  24. ret = ele.getAttributeNode("placeholder");
  25. // Return undefined if nodeValue is empty string
  26. return ret && ret.nodeValue !== "" ? ret.nodeValue : undefined;
  27. }
  28. };
  29. $(this).each(function() {
  30. var element = $(this), isPlaceholder = "placeholder" in document.createElement("input"), placeholder = funPlaceholder(this);
  31. // 三种情况打酱油
  32. // ① 没有placeholder属性值
  33. // ② value模拟,同时是支持placeholder属性的浏览器
  34. // ③ label模拟,但是无需跨浏览器兼容,同时是支持placeholder属性的浏览器
  35. if (!placeholder || (!params.labelMode && isPlaceholder) || (params.labelMode && !params.labelAcross && isPlaceholder)) { return; }
  36. // 存储,因为有时会清除placeholder属性
  37. element.data("placeholder", placeholder);
  38. // label模拟
  39. if (params.labelMode) {
  40. var idElement = element.attr("id"), elementLabel = null;
  41. if (!idElement) {
  42. idElement = "placeholder" + Math.random();
  43. element.attr("id", idElement);
  44. }
  45. // 状态初始化
  46. elementLabel = $('<label for="'+ idElement +'"></label>').css($.extend({
  47. lineHeight: "1.3",
  48. position: "absolute",
  49. color: "graytext",
  50. cursor: "text",
  51. marginLeft: element.css("marginLeft"),
  52. marginTop: element.css("marginTop"),
  53. paddingLeft: element.css("paddingLeft"),
  54. paddingTop: element.css("paddingTop")
  55. }, params.labelStyle)).insertBefore(element);
  56. // 事件绑定
  57. if (params.labelAlpha) {
  58. // 如果是为空focus透明度改变交互
  59. element.bind({
  60. "focus": function() {
  61. funLabelAlpha($(this), elementLabel);
  62. },
  63. "input": function() {
  64. funLabelAlpha($(this), elementLabel);
  65. },
  66. "blur": function() {
  67. if (this.value === "") {
  68. elementLabel.css("opacity", 1).html(placeholder);
  69. }
  70. }
  71. });
  72. //IE6~8不支持oninput事件,需要另行绑定
  73. if (!window.screenX) {
  74. element.get(0).onpropertychange = function(event) {
  75. event = event || window.event;
  76. if (event.propertyName == "value") {
  77. funLabelAlpha(element, elementLabel);
  78. };
  79. }
  80. }
  81. // 右键事件
  82. elementLabel.get(0).oncontextmenu = function() {
  83. element.trigger("focus");
  84. return false;
  85. }
  86. } else {
  87. //如果是单纯的value交互
  88. element.bind({
  89. "focus": function() {
  90. elementLabel.html("");
  91. },
  92. "blur": function() {
  93. if ($(this).val() === "") {
  94. elementLabel.html(placeholder);
  95. }
  96. }
  97. });
  98. }
  99. // 内容初始化
  100. if (params.labelAcross) {
  101. element.removeAttr("placeholder");
  102. }
  103. if (element.val() === "") {
  104. elementLabel.html(placeholder);
  105. }
  106. } else {
  107. // value模拟
  108. element.bind({
  109. "focus": function() {
  110. if ($(this).val() === placeholder) {
  111. $(this).val("");
  112. }
  113. $(this).css("color", "");
  114. },
  115. "blur": function() {
  116. if ($(this).val() === "") {
  117. $(this).val(placeholder).css("color", "graytext");
  118. }
  119. }
  120. });
  121. // 初始化
  122. if (element.val() === "") {
  123. element.val(placeholder).css("color", "graytext");
  124. }
  125. }
  126. });
  127. return $(this);
  128. };
  129. })(jQuery);