Microsoft Edge:选择选项强制重新加载

问题描述 投票:2回答:2

我在Edge 12中面临一个非常奇怪的问题。当在下拉列表中选择一个选项并将光标设置为以下输入字段时,浏览器会自行重新加载。没有涉及JavaScript。请参阅下面的笔或代码。

http://codepen.io/anon/pen/LNmVGL

<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie ie6 lt-ie10 lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>    <html class="no-js ie ie7 lt-ie10 lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js ie ie8 lt-ie10 lt-ie9" lang="en"> <![endif]-->
<!--[if IE 9]>    <html class="no-js ie ie9 lt-ie10" lang="en"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
	<title>Test</title>    
</head>
<body>
    <form method="post" action="http://localhost/ms-vouchers/sticker/step2" id="sticker-form">
        <select name="sticker_country" id="sticker-country">
            <option value="none">Land wählen ...</option>
            <option value="de">Deutschland</option>
            <option value="ch">Schweiz</option>
            <option value="at">Österreich</option>
        </select>
        <input type="text" name="sticker_shortname" id="sticker-shortname" maxlength="3" placeholder="Kürzel" />
        <input type="text" name="sticker_name" id="sticker-name" maxlength="12" placeholder="Name" />
        <input type="submit" value="Weiter" name="proceed" />
    </form>
</body>
</html>
html microsoft-edge
2个回答
0
投票

我在这里搜索过:https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/

没有与此相关的问题。

我试过EdgeHTML版本13.10586,我没有这个。

因此,如果有任何错误,它已得到纠正。


0
投票

我通过设置未来100年的max值来解决这个问题,2118-12-31。有一个关于here问题的帖子。我在Edge版本16.16299

© www.soinside.com 2019 - 2024. All rights reserved.