我可以在 Chrome 和其他浏览器中调整文本字段的大小。但是,即使在为 IE 安装了 Chrome 框架之后,我也无法在 IE9 中进行相同的工作。我用于 Ex: style="resize:horizontal;"
前任:
有人可以建议我如何让它在 IE 浏览器中工作吗?谢谢。
*编辑*
好的,所以经过大量调整,我终于使它适用于 IE9 !耶 :)
首先要做的是:您需要在 IE9 上安装 Chrome Frame。
然后你添加一些标签让它在 IE 上呈现。
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
这是完整的代码:
<!DOCTYPE >
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- <meta http-equiv="X-UA-Compatible" content="chrome=IE9">
<!-- X-UA-Compatible: chrome=1-->
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<head>
<title>Text Feilds</title>
<script src="Scripts/jquery-1.7.2.js" type="text/javascript"></script>
</head>
<body>
<input type="text" id="txt1" style= "resize: horizontal"; />
<input type="text" id="txt2" style= "resize: both"; />
</body>
</html>