0

我正在使用 betterFORMS 开发一个表单,它允许用户检查哪些字段适用于他们,然后发送数据进行处理。表单已完成且正在工作 - 我只想添加一些表单验证,如果未选中任何复选框,则停止用户发送请求。

模型和命名空间:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns="http://www.w3.org/2002/06/xhtml2" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
<xsl:output method="xml" />
<xsl:template match="/">
<xforms:model id="documentsChecklist">
    <xforms:instance>   
        <actionform xmlns="">
            <xforms:model id="documentsChecklist">
                <xforms:instance>   
                <actionform xmlns="">
                    <detail>        
                        <other></other>
                        <otherText></otherText>
                    </detail>
                </actionform>
    </xforms:instance>
    <xforms:bind id="other" nodeset="/actionform/detail/other" calculate="choose(. = 'Y', ., 'N')"/>
    <xforms:bind nodeset="/actionform/detail/otherBox" relevant="/actionform/detail/other ='Y'" /> 
</xforms:model> 

我的表格:

<div id="formBody"><br />
    <xforms:select bind="other" appearance="full" align="right">
        <xforms:item>
            <xforms:label>Other</xforms:label>
            <xforms:value>Y</xforms:value>
        </xforms:item>
    </xforms:select>
    <xforms:input ref="/actionform/detail/otherText">
        <xforms:label>Please specify:*</xforms:label>
    </xforms:input>
    <xforms:submit submission="formSubmit" id="send" class="ui-button" onclick="checkForm(this);return false;">
        <xforms:label>Send</xforms:label>
    </xforms:submit>
</div>

    <xforms:submit submission="formSubmit" id="maskButton" class="ui-button">
        <xsl:attribute name="style">display:none</xsl:attribute>
    </xforms:submit>

    <script type="text/javascript">
        function checkForm(){
            var otherCheckValue = document.getElementById('otherCheck-value');
            alert(otherCheckValue.value);
            if(boxesChecked != 0){
                document.getElementById('maskButton-value').click();
            }
        }
    </script>

</xsl:template>
</xsl:stylesheet>

这个想法是向用户显示的提交按钮调用 javascript 函数 checkForm() 然后被禁用。

javascript 函数查看我的每个文本框,如果至少选中一个,则使用对用户隐藏的 maskButton 提交发送表单。否则,显示警告消息。

我一直在玩 getElementById() 函数,但似乎无法从我的复选框中获取任何值(选中或未选中),所以这就是为什么我只尝试在警报中显示该值。如果未更改或未选中(与表单提交相同),此警报应显示 Y 表示已选中或为空。但无论我尝试了什么,警报都是空的。

另一种方法是在表单后添加一个确认页面,这样就不会丢失所有内容。我要你看看我想做的事是否可行。谢谢

4

1 回答 1

1

在没有任何 Javascript 指令的情况下,您可以使用 xforms:group 技巧来呈现特定条件的提交控件。像这样的东西:

<xforms:group ref=".[detail/other != '']">
  <xforms:submit .../>
</xforms:group>

-阿兰

于 2014-01-10T16:43:02.713 回答