XML错误:结束标记'AllQuestions'与开始标记'Q'不匹配

时间:2015-02-12 19:13:33

标签: xml

我正在使用此错误“结束标记'AllQuestions'与Foxe的开始标记'Q'”不匹配。你能告诉我这个问题是什么吗?

这是一个来自“谁想要成为百万富翁”风格的HTML Flash游戏的设置,我们可以编辑它。我正在尝试更改问题和答案,以便为学习者量身定制。

<?xml version="1.0" encoding="UTF-8"?>
<AllQuestions>
<Title>Who wants to be a Millionaire?!</Title>
<Random>yes</Random>
<AllQuestions>

<Q>
<question>Pertains to a Payee that is approved by the client for processing?</question>
<answer>3</answer>
<choice_1>Manual Payee</choice_1>
<choice_2>Unacceptable Payee(s)</choice_2>
<choice_3>Acceptable Payee(s)</choice_3>
<choice_4>Auto Payee Verification</choice_4>
</Q>
<Q>

<Q>
<question>It’s the Manual Verification of payee names by an individual</question>
<answer>4</answer>
<choice_1>Payee List</choice_1>
<choice_2>Acceptable Payee(s)</choice_2>
<choice_3>Endorsement</choice_3>
<choice_4>Manual Payee Verification</choice_4>
</Q>
<Q>


<Q>
<question>What do you call the list of payee names for MPV?</question>
<answer>2</answer>
<choice_1>Acceptable Payee(s)</choice_1>
<choice_2>Payee List</choice_2>
<choice_3>Unacceptable Payee(s)</choice_3>
<choice_4>Default Payee(s)</choice_4>
</Q>
<Q>


<Q>
<question>What are the 4 Payee Groups?</question>
<answer>4</answer>
<choice_1>Acceptable Payee(s)</choice_1>
<choice_2>Abbreviations  Default Payee(s)</choice_2>
<choice_3>Unacceptable Payee(s)</choice_3>
<choice_4>All of the Above</choice_4>
</Q>
<Q>


<Q>
<question>What does an Asterisk (*) symbol next to a payee name mean?</question>
<answer>3</answer>
<choice_1>Plus Everything</choice_1>
<choice_2>Plus Nothing</choice_2>
<choice_3>Plus Anything</choice_3>
<choice_4>Plus Acceptable Name</choice_4>
</Q>
<Q>


<Q>
<question>True or False: When validating payees, is it acceptable to combined words from a list of payees?</question>
<answer>1</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Both</choice_3>
<choice_4>Maybe</choice_4>
</Q>
<Q>


<Q>
<question>This is a term used to identify the recipient of the fund. </question>
<answer>4</answer>
<choice_1>Default Payee</choice_1>
<choice_2>Unacceptable Payee</choice_2>
<choice_3>Acceptable Payee</choice_3>
<choice_4>Payee</choice_4>
</Q>
<Q>


<Q>
<question>True or False: When reviewing a payee name with a hyphen (-), we must make sure both of the payees on the check are acceptable</question>
<answer>1</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Both</choice_3>
<choice_4>Maybe</choice_4>
</Q>
<Q>


<Q>
<question>True or False: When reviewing a payee name with a slash (/), we must we make sure both of the payees on the check are acceptable.</question>
<answer>2</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Both</choice_3>
<choice_4>Maybe</choice_4>
</Q>
<Q>


<Q>
<question>What does “FBO” stand for? </question>
<answer>2</answer>
<choice_1>Failed Benefit Of</choice_1>
<choice_2>For the Benefit Of</choice_2>
<choice_3>Further Benefits of</choice_3>
<choice_4>Far Benefits of</choice_4>
</Q>
<Q>


<Q>
<question>“BankOne” considered as a Default Payee?</question>
<answer>1</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Both</choice_3>
<choice_4>Maybe</choice_4>
</Q>
<Q>


<Q>
<question>Do we process a check payable to “Cash”?</question>
<answer>1</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Maybe</choice_3>
<choice_4>Both</choice_4>
</Q>
<Q>


<Q>
<question>True or False: A check stamped “Per Env” can be processed under “All Payees”?</question>
<answer>1</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Maybe</choice_3>
<choice_4>Both</choice_4>
</Q>
<Q>


<Q>
<question>True or False: A check stamped “Per Mat” can be processed under “All Payees”?</question>
<answer>1</answer>
<choice_1>True</choice_1>
<choice_2>False</choice_2>
<choice_3>Maybe</choice_3>
<choice_4>Both</choice_4>
</Q>
<Q>


<Q>
<question>An endorsement is a signature or stamp on the back of a check to?</question>
<answer>4</answer>
<choice_1>Make it payable</choice_1>
<choice_2>Approve Payment</choice_2>
<choice_3>Trnsfr Ownrshp frm 1 prty to anthr</choice_3>
<choice_4></choice_4>
</Q>



</AllQuestions>

2 个答案:

答案 0 :(得分:0)

您的所有问题中都有额外的“<Q>

</Q>
<Q>    <----

<Q>

还有一个不平衡的<AllQuestions>

答案 1 :(得分:0)

您在<Q>内有一个开放的<AllQuestions>元素,在您尝试关闭<AllQuestions>之前,您没有关闭。

这可能可以追溯到这样一个事实,即大多数时间开始<Q>元素,你有几个空白行,然后立即启动另一个 <Q>元素在里面。

相关问题