标签:rip script 输入 button head on() alert 检测 tin
<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>
为什么#ID选择器使用的,视图模式检测OK,但IE11却没什么响应?
标签:rip script 输入 button head on() alert 检测 tin
原文地址:https://www.cnblogs.com/huo-fenghuang/p/9347502.html