Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created December 18, 2013 02:27
Show Gist options
  • Select an option

  • Save zhuzhuaicoding/8016383 to your computer and use it in GitHub Desktop.

Select an option

Save zhuzhuaicoding/8016383 to your computer and use it in GitHub Desktop.
baidu.dom.getParent = function (element) {
element = baidu.dom._g(element);
//parentElement在IE下准确,parentNode在ie下可能不准确
return element.parentElement || element.parentNode || null;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment