html5 – Web组件是否允许嵌套HTML表单?

前端之家收集整理的这篇文章主要介绍了html5 – Web组件是否允许嵌套HTML表单?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很好奇,如果 WebComponents的工作中的任何内容都可以在不违反 the rules的情况下逃脱嵌套HTML表单之类的东西.我问,因为我很好奇WebComponent的内部对于祖先元素是多么孤立包含它们.我可以想象,如果使用WebComponents无法嵌套表单,那么由于消费者不了解组件的内部结构可能导致的问题,这可能导致建议转向组件远离包含表单.

无论哪种方式,我已经做了一些挖掘,并且无法发现任何事情,所以我想我会在这里咨询专家以获得更多洞察力.

相关文章

> Is it valid to have a html form inside another html form?
> Can you nest html forms?

解决方法

这对我来说似乎是一个非常有效的问题.

出于好奇,我快速做了一个fiddle(下面提供)测试嵌套表单的用例,其中一个在shadow root中.

var template = document.querySelector('template');
var clone = document.importNode(template.content,true);

var root = document.querySelector('#host').createShadowRoot();
root.appendChild(clone);

document.querySelector('button').onclick = function(e) {
    var formValues = $('#docForm').serialize();
    
    alert(formValues);
    $('#result').text(formValues);
    return false;
}

document.querySelector('#host').shadowRoot.querySelector('button').onclick = function(e) {
    var form = document.querySelector('#host').shadowRoot.querySelector('#shadowForm');
    
    alert($(form).serialize());
  $('#result').text($(form).serialize());
    return false;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<template id="template">
    <form id="shadowForm">
        <input type="text" name="text"/>
        <button type="submit">Submit shadow form</button>
    </form>
</template>


<form id="docForm" >
    <table>
    <tr>
        <td>
            <input type="checkBox" name="checkBox"/>
        </td>
    </tr>
    <tr>
        <td>
            <input type="text" val="" name="text"/>
        </td>
        </tr>
    <tr>
        <td>
            <select name="multiple" multiple="multiple">
                <option>A</option>
                <option>B</option>
                <option>C</option>
            </select>
        </td>
    </tr>
    <tr>
        <td>
            <div id="host"></div>
            <button type="submit"> Submit document Form</button>
        </td>
    </tr>
    </table>
</form>


<div id="result"></div>

IMO它按预期工作,当你提交一个在轻DOM中的表单,其中包含一个元素的shadowRoot中的表单,它们都呈现完美.

just how isolated the internals of a WebComponent are to the ancestor
elements that contain them

Shadow Root是与特定元素相关联的不同节点,它不能使用常规DOM操作API访问,因此不会干扰轻型DOM标记,在这种情况下是form-in-form规则.

I could imagine that if nesting of forms is not possible using
WebComponents … if a consumer isn’t aware of the internals of the component.

因此,要回答这个问题,用户可以在页面上放置他们想要的任何html,如果该组件使用shadow DOM进行封装,则其渲染行为不会受到他们使用的组件的影响.

原文链接:https://www.f2er.com/html5/168494.html

猜你在找的HTML5相关文章