0

I have a simple HTML form that will not submit in IE9. It works in Chrome, FF, and IE10.

I have tried to submit in IE9 on Windows 7 and IE10 on Windows 8.

IE10 works unless I change the browser mode to IE9; then it won't submit.

Demo. If you click "Save" on any working browser, it'll take you to the fake demo_form.asp.

Here is the form:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>Title</title> 
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1"> 

        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
        <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
        <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
    </head>
    <body>
        <div data-role="page">
            <div data-role="header">
                <h1>Title</h1>
            </div>
            <div data-role="fieldcontain">
                <div class="error-messsage">
                    <p/>
                </div>
                <p>
                    <form action="demo_form.asp" data-ajax="false" method="get">
                        <input type="hidden" name="scoreType" id="_scoreType" value="T"/>
                        <div data-role="fieldcontain">
                            <fieldset class="ui-grid-a">
                                <div class="ui-block-a">Minutes:</div>
                                <div class="ui-block-b">Seconds:</div>
                                <div class="ui-block-a">
                                    <input type="number" name="score_minutes" value="1" id="_scoreMinutes" maxlength="20" autocomplete="off" data-inline="true"/>
                                </div>
                                <div class="ui-block-b">
                                    <input type="number" name="score_seconds" value="2" id="_scoreSeconds" maxlength="20" autocomplete="off" data-inline="true"/>
                                </div>
                            </fieldset>
                            <input type="hidden" name="score" id="_score" value="62"/>
                        </div>
                        <div data-role="fieldcontain">
                            <label for="_note">Note:</label>
                            <textarea name="note" cols="40" rows="10" id="_note" autocomplete="off"/>
                        </div>
                        <div data-role="fieldcontain">
                            <label for="_classAttended" class="select">Class Time:</label>
                            <select name="class_attended" id="_classAttended" data-native-menu="false">
                                <option value="-1"/>
                                <option value="6">06:00 am</option>>
</select>
                        </div>
                        <div data-role="fieldcontain">
                            <label for="_memberRating" class="select">Member Rating:</label>
                            <select name="member_rating" id="_memberRating" data-native-menu="false">
                                <option value="-1"/>
                                <option value="5">5 </option>
                            </select>
                        </div>
                        <div data-role="fieldcontain">
                            <label for="_rx">RX</label>
                            <input type="checkbox" name="rx" value="1" id="_rx" data-mini="true"/>
                        </div>
                        <div data-role="fieldcontain">
                            <a href="http://mysite.com/index.php/welcome/index/TRUE" data-ajax="false" data-role="button" data-inline="true">Cancel</a>
                            <button name="" type="Submit" id="_submit" class="ui-btn-hidden" value="Save" aria-disabled="false" data-inline="true" data-theme="b"/>
                        </div>
                    </form>
                </p>
            </div>
        </div>
    </body>
</html>
4

1 に答える 1

5

の中にある の中に<div>入れようとしている があります。しかしs は 内にあることはできないので、HTML パーサーは要素を閉じ、そうすることで . も閉じます。そのため、保存ボタンはフォーム内にないため、IE9 はボタンをクリックしたときに何を送信すればよいかわかりません。を囲むタグを削除します。<form><p><div><p><p><form><p><form>

FF、Chrome、および IE10 で使用されている HTML5 パーサーには、無効なマークアップに対処するための巧妙なトリックがいくつかありますが、古い IE9 パーサーは対処できません。

また、 と が<p/>あり<textarea/>ます。そうしないでください。セルフ クロージング構文は、どちらの要素でもサポートされていません。

于 2012-12-21T08:19:50.077 に答える