Questions tagged «dom-manipulation»

24
如何将类添加到给定的元素?
我有一个已经有一个类的元素: <div class="someclass"> <img ... id="image1" name="image1" /> </div> 现在,我想创建一个JavaScript函数,将一个类添加到div(不是替换,而是添加)。 我怎样才能做到这一点?


8
在输入中对ng-model进行过滤
我有一个文本输入,不想让用户使用空格,所有键入的内容都将变为小写。 我知道我不允许在ng-model上使用过滤器。 ng-model='tags | lowercase | no_spaces' 我研究了创建自己的指令,但仅向其上添加的元素添加了功能$parsers,$formatters但未更新输入ng-model。 如何更改当前输入的内容? 我实质上是在尝试创建“标签”功能,该功能与StackOverflow上的功能相同。


5
如何使用JavaScript将所有HTML元素子级移动到另一个父级?
想像: <div id="old-parent"> <span>Foo</span> <b>Bar</b> Hello World </div> <div id="new-parent"></div> old-parent在new-parent不使用jQuery的情况下,可以编写哪种JavaScript将所有子节点(元素和文本节点)从移到? 我不在乎节点之间的空格,尽管我希望能抓住一些麻烦Hello World,但它们也需要按原样迁移。 编辑 需要明确的是,我想得出以下结论: <div id="old-parent"></div> <div id="new-parent"> <span>Foo</span> <b>Bar</b> Hello World </div> 提议重复的问题的答案将导致: <div id="new-parent"> <div id="old-parent"> <span>Foo</span> <b>Bar</b> Hello World </div> </div>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.