- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
使用 Node.cloneNode(true)
有据可查(主要在 SO 上)在 <input type="text">
上返回一个新的 <input>
与原始节点具有相同文本内容的节点,但克隆了一个 <select>
(在用户选择之后)返回一个新的 <select>
无需用户选择。这起初似乎不符合规范,因为根据 DOM 3 :
cloneNode
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data. User data associated to the imported node is not carried over.
为什么会发生这种情况的答案稍后会详细说明,但在 DOM 2 spec 中更清楚,
cloneNode
Cloning an Element copies all attributes and their values, including those generated by the XML processor to represent defaulted attributes, but this method does not copy any text it contains unless it is a deep clone, since the text is contained in a child Text node.
鉴于这种措辞,我愿意接受这种行为,尽管我认为 <input>
不包含文本节点,因为 childNodes
<input>
的属性永远是空的 NodeList
不管它是否包含文本(在规范的措辞中,“有一个文本节点”)。
至少,我明白了<option>
用户选择被视为用户数据,因此不克隆是有道理的。在这种情况下,此“用户数据”包含在 selected
中<option>
的属性(property).
然而,当trying the behavior with radio buttons and checkboxes ,Chrome 38、FF 33、Safari 6.2 中的行为,完全违背了上述定义。克隆选中的复选框或选中的单选按钮会保持其选中状态。这似乎与规范相反,因为此信息是“用户数据”,它(如 <select>
)包含在属性中(在本例中为 checked
)。
我是否正确认为这不符合规范?如果没有,是否有其他地方定义了这种行为?如果是,是否有一个用例可以解释为什么 cloneNode()
它如何克隆用户输入字段的状态如此不一致?
编辑: 在针对我的浏览器套件进行测试时,我发现 Opera 12.15 的性能与 <select>
的预期一样。输入。即,它保留了克隆时的用户选择。
最佳答案
DOM Level 4 定义 cloning steps更清楚:
Specifications may define cloning steps for all or some nodes. The algorithm is passed copy, node, document, and optionally a clone children flag, as indicated in the clone algorithm.
To clone a node, optionally with a document and a clone children flag, run these steps:
If document is not given, let document be node's node document.
Let copy be a node that implements the same interfaces as node.
If copy is a document, set its node document and document to copy.
Otherwise, set copy's node document to document.Copy the following from node to copy, depending on the type of node:
Document
Its encoding, content type, URL, its mode (quirks mode, limited quirks mode, or no-quirks mode), and its type (XML document or HTML document).
DocumentType
Its name, public ID, and system ID.
Element
Its namespace, namespace prefix, local name, and its attribute list.
ProcessingInstruction
Its target and data.Any other node
—Run any cloning steps defined for node in other applicable specifications and pass copy, node, document and the clone children flag if set, as parameters.
If the clone children flag is set, clone all the children of node and append them to copy, with document as specified and the clone children flag being set.
Return copy.
The
cloneNode(deep)
method must return a clone of the context object, with the clone children flag set if deep is true.
select
和input
都是Element
,所以只有它们的namespace , namespace prefix , local name , 及其 attribute list应在步骤 4 中复制。
但是,在第 5 步中,可能会运行额外的克隆步骤。在 input
元素的情况下,这些步骤可能包括复制 value
和 selected
属性。
关于javascript - Node.cloneNode() 与 DOM 规范不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27193301/
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Recreating a Dictionary from an IEnumerable 在 Dictiona
是否可以使用命令行版本的 ImageMagick 修剪图像(比如带有 alpha 的 PNG),使输出图像的宽度和高度都是偶数(不是奇数)? 准确地说,应该先修剪输出图像,然后用透明像素填充。我需要这
我有一个订单的Map,可以由许多不同的线程访问。我想控制访问,所以考虑以下简单的数据结构+包装器。 public interface OrderContainer { boolean cont
我有以下代码,现在只是 div 中的一个 Logo ,但我正在尝试添加一些导航单元格,稍后我将对其进行样式设置。问题是,我似乎无法让它们与(除此之外) Logo “一致”,它们总是下降到下一行。我做错
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
有没有办法将种子值传递给 d3-cloud 或其他基于 javascript 的标签云,以使其在页面加载之间保持一致? 我们的客户希望使用标签云作为导航/发现辅助工具,但由于 d3-cloud 会在每
我有一条由用户使用 D3.js 绘制的路径。 我想在我的用户绘制路径上定义一个破折号数组,但是,随着它改变其形状和长度,破折号的行为不一致并且间隙在移动并变得越来越小。 这是一个代码笔: https:
只是为了研究UINavigationBar和UIStatusBar的UI,我把Navigation Bar Style改成了Black,并且取消勾选Bar visibility,即Shows Navi
我最近在我的家用机器 (OSX 10.9) 和我的远程服务器 (Ubuntu 12.04 64 位) 上安装了 unison。 我在这两个地方都安装了 2.40.102 版本。我在我的 Mac 上使用
我正在使用 migrate 创建 SQL 数据库模式并用初始数据填充它。后来使用 SQLAlchemy 来处理这个数据库。 我如何测试我的 SQLAlchemy 模型是否与 migrate 生成的真实
道歉对这一切来说还是新鲜事。我正在创建一个网页,并在两个单独的 div 中将图像和文本并排放置。我已经设法将它们放在页面上我想要的位置,但是当我调整页面大小时,文本会调整大小,但图像不会。我希望文本底
在翻阅Cassandra和HBase的阅读资料时,我发现Cassandra并不一致,但HBase是一致的。没有找到任何合适的阅读 Material 。 有人可以提供有关此主题的任何博客/文章吗? 最佳
我需要计算 MacOS 中文件夹的大小。该尺寸值必须与 Finder 一致。我尝试了几种方法来做到这一点。但结果总是与Finder不同。 以下方法是我尝试过的。 typedef struct{
问:我可以使用 C++ 中的任何编译时机制来自动验证模板类方法集是否从类特化到特化相匹配? 示例:假设我想要一个类接口(interface),它根据模板值专门化具有非常不同的行为: // forwar
我想使用 SelectKBest 选择前 K 个特征并运行 GaussianNB: selection = SelectKBest(mutual_info_classif, k=300) data_t
我想要一个位于页面中央的 div,其中包含一行(两个单词)的 h1 文本,并且该文本与 div 的长度对齐;意思是,字母留出空间(同时保持它们的大小)以占据 div 的整个宽度,并且不要超出 div。
我试图更新我的服务器,所以我通过 ssh 运行以下命令: sudo do-release-upgrade 我收到以下错误: Errors were encountered while processi
我想验证单应矩阵会给出好的结果,而这个 this answer 有答案 - 但是,我不知道如何实现答案。 那么谁能推荐我如何使用 OpenCV 计算 SVD 并验证第一个奇异值与最后一个奇异值的比率是
我最近更新到 cocoapods 0.36 并对内部规范做了一些更改,现在 podspec 不再有效。我用 0.35 验证了此规范的先前版本 (0.3.8),但使用 0.36 失败。很明显 cocoa
我有两个并排设置的 TableView ,我需要它们同时滚动。因此,当您滚动一个时,另一个也会同时滚动。 我进行了一些搜索,但找不到任何信息,但我认为这一定是有可能的。 我的 TableView 都连
我是一名优秀的程序员,十分优秀!