helper.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. var helper = {};
  2. helper.toHtmlObject = function(htmlCode) {
  3. var div = document.createElement('div');
  4. div.innerHTML = htmlCode;
  5. return div.firstChild;
  6. };
  7. helper.removeClass = function(obj, className) {
  8. if(helper.hasClass(obj, className)) {
  9. var reg = new RegExp('(\\s|^)' + className + '(\\s|$)');
  10. obj.className = obj.className.replace(reg, ' ').trim();
  11. };
  12. };
  13. helper.hasScrollBar = function(tag) {
  14. return (Math.max(tag.scrollHeight, tag.offsetHeight) > window.innerHeight);
  15. };
  16. helper.hasClass = function(obj, className) {
  17. return !!obj.className.match(new RegExp('(\\s|^)' + className + '(\\s|$)'));
  18. };
  19. helper.getScrollWidth = function() {
  20. var outer = document.createElement('div');
  21. outer.style.visibility = 'hidden';
  22. outer.style.width = '100px';
  23. outer.style.msOverflowStyle = 'scrollbar';
  24. document.body.appendChild(outer);
  25. var widthNoScroll = outer.offsetWidth;
  26. outer.style.overflow = 'scroll';
  27. var inner = document.createElement('div');
  28. inner.style.width = '100%';
  29. outer.appendChild(inner);
  30. var widthWithScroll = inner.offsetWidth;
  31. outer.parentNode.removeChild(outer);
  32. return widthNoScroll - widthWithScroll;
  33. };
  34. helper.addClass = function(obj, className) {
  35. if(!helper.hasClass(obj, className)) obj.className += " " + className;
  36. };