我正试图利用所有权管理系统过滤码( 展示这一问题的示范守则: 传真内容: CSS的内容: 共同提交文件的内容: 在案文左上角进行点击将显示警惕性,但是,在比规定高度低的可见文字上任何地方都不会登记。 请注意,在IE7中,情况并非如此;可点面积也轮值。 我还尝试使用<代码>progid:DXImage Transform.Microsoft.BasicImage(rotation=3);代替矩阵过滤器,但结果相同。 是否有任何人过去必须处理这一问题,或者是否有有助于这种情况的任何信息? EDIT: I ve replicated this on jsFiddle:
http://jsfiddle.net/e46jD/ EDIT: Turns out I ve been burnt for relying on IE9 to provide accurate emulation of IE8. Testing the code in an actual installation of IE8 works fine. So, now the only problem is with IE9 itself.<html>
<head>
<link rel="stylesheet" href="test.css"/>
<script src="jquery.js"></script>
<script src="test.js"></script>
</head>
<body>
<div class="rotated">
Element which is longer than it is wide...
</div>
</body>
</html>
.rotated {
height: 15px; /* required for IE7 to perform rotation */
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=-1, M21=1, M22=0, sizingMethod= auto expand );
}
jQuery(function($) {
$( .rotated ).click(function() {
alert( You clicked within the original boundary );
});
});
How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.