<script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script>
<script>
$(document).ready(function(){
$("input[type='button']").click(function(){
var inputValue = $("#testInput").val();
alert(inputValue);
});
});
</script>
<!-- 为什么上面的代码,实时视图下ok,但在IE11中却不能呢? -->
</head>
<body>
<input type="text" id="testInput" name="test" value="" />
<input type="button" value="输入的值为:"/>
</body>