com.google.gwt.dom.client.Element.removeAttribute()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(6.1k)|赞(0)|评价(0)|浏览(310)

本文整理了Java中com.google.gwt.dom.client.Element.removeAttribute()方法的一些代码示例,展示了Element.removeAttribute()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element.removeAttribute()方法的具体详情如下:
包路径:com.google.gwt.dom.client.Element
类名称:Element
方法名:removeAttribute

Element.removeAttribute介绍

[英]Removes an attribute by name.
[中]按名称删除属性。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Removes the state from the given element.
  3. *
  4. * @param elem the element which has the specified state
  5. * @param stateName the name of the state to remove
  6. */
  7. public static void removeState(Element elem, String stateName) {
  8. elem.removeAttribute(stateName);
  9. }
  10. /**

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. public void remove(Element element) {
  3. assert element != null : "Element cannot be null.";
  4. element.removeAttribute(ATTR_NAME_ROLE);
  5. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Removes the state/property attribute for element {@code element}.
  3. *
  4. * @param element HTM element
  5. */
  6. public void remove(Element element) {
  7. assert element != null : "Element cannot be null.";
  8. element.removeAttribute(name);
  9. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Removes the named attribute from the given element.
  3. *
  4. * @param elem the element whose attribute is to be removed
  5. * @param attr the name of the element to remove
  6. * @deprecated Use {@link Element#removeAttribute(String)} instead.
  7. */
  8. @Deprecated
  9. public static void removeElementAttribute(Element elem, String attr) {
  10. elem.removeAttribute(attr);
  11. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. public void setTitle(String title) {
  3. Element containerElement = getContainerElement();
  4. if (title == null || title.length() == 0) {
  5. containerElement.removeAttribute("title");
  6. } else {
  7. containerElement.setAttribute("title", title);
  8. }
  9. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Returns the dom element.
  3. *
  4. * @return the dom element
  5. * @throws RuntimeException if the element cannot be found
  6. */
  7. public T get() {
  8. if (element == null) {
  9. element = Document.get().getElementById(domId).<T>cast();
  10. if (element == null) {
  11. throw new RuntimeException("Cannot find element with id \"" + domId
  12. + "\". Perhaps it is not attached to the document body.");
  13. }
  14. element.removeAttribute("id");
  15. }
  16. return element;
  17. }
  18. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Make an element focusable or not.
  3. *
  4. * @param elem the element
  5. * @param focusable true to make focusable, false to make unfocusable
  6. */
  7. protected void setFocusable(Element elem, boolean focusable) {
  8. if (focusable) {
  9. FocusImpl focusImpl = FocusImpl.getFocusImplForWidget();
  10. focusImpl.setTabIndex(elem, getTabIndex());
  11. if (accessKey != 0) {
  12. focusImpl.setAccessKey(elem, accessKey);
  13. }
  14. } else {
  15. // Chrome: Elements remain focusable after removing the tabIndex, so set
  16. // it to -1 first.
  17. elem.setTabIndex(-1);
  18. elem.removeAttribute("tabIndex");
  19. elem.removeAttribute("accessKey");
  20. }
  21. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. @Override
  2. public void remove(Element element) {
  3. assert element != null : "Element cannot be null.";
  4. element.removeAttribute(ATTR_NAME_ROLE);
  5. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Removes the state/property attribute for element {@code element}.
  3. *
  4. * @param element HTM element
  5. */
  6. public void remove(Element element) {
  7. assert element != null : "Element cannot be null.";
  8. element.removeAttribute(name);
  9. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Removes the state from the given element.
  3. *
  4. * @param elem the element which has the specified state
  5. * @param stateName the name of the state to remove
  6. */
  7. public static void removeState(Element elem, String stateName) {
  8. elem.removeAttribute(stateName);
  9. }
  10. /**

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. @Override
  2. public void remove(Element element) {
  3. assert element != null : "Element cannot be null.";
  4. element.removeAttribute(ATTR_NAME_ROLE);
  5. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. cellParent.removeAttribute("tabIndex");
  2. cellParent.removeAttribute("accessKey");
  3. } else {
  4. FocusImpl focusImpl = FocusImpl.getFocusImplForWidget();

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Removes the named attribute from the given element.
  3. *
  4. * @param elem the element whose attribute is to be removed
  5. * @param attr the name of the element to remove
  6. * @deprecated Use {@link Element#removeAttribute(String)} instead.
  7. */
  8. @Deprecated
  9. public static void removeElementAttribute(Element elem, String attr) {
  10. elem.removeAttribute(attr);
  11. }

代码示例来源:origin: com.sksamuel.jqm4gwt/jqm4gwt-library

  1. /**
  2. * @param attrs - comma separated attribute names.
  3. */
  4. public static void removeAttributes(Element elt, String attrs) {
  5. if (elt == null || attrs == null || attrs.isEmpty()) return;
  6. String[] arr = attrs.split(",");
  7. for (String i : arr) {
  8. String s = i.trim();
  9. if (s.isEmpty()) continue;
  10. elt.removeAttribute(s);
  11. }
  12. }

代码示例来源:origin: com.sksamuel.jqm4gwt/jqm4gwt-standalone

  1. /**
  2. * @param attrs - comma separated attribute names.
  3. */
  4. public static void removeAttributes(Element elt, String attrs) {
  5. if (elt == null || attrs == null || attrs.isEmpty()) return;
  6. String[] arr = attrs.split(",");
  7. for (String i : arr) {
  8. String s = i.trim();
  9. if (s.isEmpty()) continue;
  10. elt.removeAttribute(s);
  11. }
  12. }

代码示例来源:origin: org.eclipse.che.core/che-core-ide-ui

  1. public void selectItem(Element item) {
  2. if (selectedItem != null) {
  3. selectedItem.removeAttribute(SELECTED_ATTRIBUTE);
  4. }
  5. selectedItem = item;
  6. selectedItem.setAttribute(SELECTED_ATTRIBUTE, SELECTED_ATTRIBUTE);
  7. }
  8. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. @Override
  2. public void setTitle(String title) {
  3. Element containerElement = getContainerElement();
  4. if (title == null || title.length() == 0) {
  5. containerElement.removeAttribute("title");
  6. } else {
  7. containerElement.setAttribute("title", title);
  8. }
  9. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. @Override
  2. public void setTitle(String title) {
  3. Element containerElement = getContainerElement();
  4. if (title == null || title.length() == 0) {
  5. containerElement.removeAttribute("title");
  6. } else {
  7. containerElement.setAttribute("title", title);
  8. }
  9. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-toolkit

  1. public void setAccept(String accept) {
  2. if (accept != null) {
  3. getFileInputElement().setAttribute("accept", accept);
  4. } else {
  5. getFileInputElement().removeAttribute("accept");
  6. }
  7. }

代码示例来源:origin: info.magnolia.ui/magnolia-ui-vaadin-common-widgets

  1. @Override
  2. public void clear(Element thumbnail) {
  3. Element icon = getIcon(thumbnail);
  4. icon.setClassName(ICON_STYLE_NAME);
  5. icon.getStyle().setDisplay(Style.Display.NONE);
  6. Element image = getImage(thumbnail);
  7. image.removeAttribute("src");
  8. image.getStyle().setDisplay(Style.Display.NONE);
  9. thumbnail.addClassName(CLEARED_STYLE_NAME);
  10. }

相关文章

Element类方法