Tag: 焦点

使用:重点风格的外部div?

当我开始在textarea中写文本时,我想让外部的div和一个类框一起使边框变成实心的,而不是虚线,但不知何故:这种情况下焦点不适用。 如果它适用于:主动,它怎么不适用:焦点? 任何想法为什么? (注意:我希望DIV的边框变成固定的,而不是textareas) div.box { width: 300px; height: 300px; border: thin dashed black; } div.box:focus{ border: thin solid black; } <div class="box"> <textarea rows="10" cols="25"></textarea> </div>

有没有可能在JavaScript中更改document.activeElement?

是否有可能以编程方式更改JavaScript中document.activeElement属性的值?

为什么这个textarea没有使用.focus()?

我有这个代码来集中一个textarea当用户点击“回复”button: $('#reply_msg').live('mousedown', function() { $(this).hide(); $('#reply_holder').show(); $('#reply_message').focus(); }); 它显示了答复的forms,但textarea不会重点。 我通过AJAX添加textarea,这就是为什么我使用.live() 。 我添加的框显示(我甚#reply_msg通过AJAX添加#reply_msg和东西发生时,我把鼠标放在它),但它不会集中在textarea。 编辑 我的HTML看起来像: <div id="reply_msg"> <div class="replybox"> <span>Click here to <span class="link">Reply</span></span> </div> </div> <div id="reply_holder" style="display: none;"> <div id="reply_tab"><img src="images/blank.gif" /> Reply</div> <label class="label" for="reply_subject" style="padding-top: 7px; width: 64px; color: #999; font-weight: bold; font-size: 13px;">Subject</label> <input type="text" id="reply_subject" class="input" style="width: 799px;" value="Re: <?php […]

禁用在WPF DataGrid中select

如何禁用在WPFTooklit的DataGridselect? 我尝试修改为ListView (从WPF ListViewclosuresselect )工作的解决scheme,但不起作用: <tk:DataGrid> <tk:DataGrid.ItemContainerStyle> <Style TargetType="{x:Type tk:DataGridRow}"> <Setter Property="Focusable" Value="false"/> </Style> </tk:DataGrid.ItemContainerStyle> <tk:DataGrid.CellStyle> <Style TargetType="{x:Type tk:DataGridCell}"> <Setter Property="Focusable" Value="false"/> </Style> </tk:DataGrid.CellStyle> </tk:DataGrid>

Visual Studio:如何阻止偷点焦点的断点?

当Visual Studio中有一个断点时 ,它就会从那个程序员正在查看/input的任何其他应用程序中窃取焦点 。 这可能是非常恼人的,因为VS抓住了程序员在那个时候input到另一个应用程序的任何键盘input,并且把它作为自己的input。 你们用什么技巧来防止这种焦点偷窃? (我在Visual C ++ 2008和2010上遇到了这个问题。我猜测这对Visual Studio来说是一个问题,对于所有最近的版本来说都是如此)。

如何在突出显示或点击时突出显示ImageView?

一个很好的例子是在Twitter的启动屏幕上(当应用程序第一次启动时显示大图标的屏幕),或者当您关注应用程序图标时,甚至只是查看应用程序托盘。 基本上我需要突出显示一个ImageView,ImageView中图像的高亮轮廓,看起来像是该图像的边框。 我也想自定义突出显示,使其成为某种颜色,并淡化。 谢谢, groomsy

focusable和focusableInTouchMode之间的区别?

我想知道他们之间的实际区别……什么时候应该分别被使用,每个人应该如何使用,以及在哪些情况下都有帮助? 举一些例子,并详细解释它们。

将焦点设置为dynamic加载的DIV中的字段

什么是适当的方法来设置焦点到一个dynamic加载的DIV内的特定领域? $("#display").load("?control=msgs"); // loads the HTML into the DIV $('#display').fadeIn("fast"); // display it $("tex#header").focus(); // ?? neither that $("input#header").focus(); // ?? nor that $('#display', '#header').focus() // ?? nor that $("#header").focus(); // ?? nor that works 以下HTML被提取到display DIV中: <div id="display"> <form id="newHeaderForm" class="dataform" action="/" method="post"> <input id="to" type="hidden" value="22" name="to"/> <dl> <dt>Header</dt> <dd> <input id="header" class="large" […]

删除UserControl上的焦点矩形

我有一个焦点=“真”的WPF用户控件。 这是窗口中唯一可以调整的控件。 每当用户按Tab或Alt(特别是当他们Alt + Tab到另一个应用程序),我的UserControl获取一个虚线边框,又名焦点矩形。 焦点矩形然后停留在窗口closures之前。 我怎样才能防止我的UserControl永远显示这个焦点矩形? 编辑 原来焦点矩形实际上并没有被我的UserControl显示出来。 我的焦点用户控件包含另一个用户控件,反过来,它包含一个ItemsControl,ItemsControl是显示焦点矩形。 当我将FocusVisualStyle =“{x:Null}”添加到ItemsControl时,焦点矩形消失了。

哪些浏览器支持document.activeElement?

哪些Web浏览器/版本支持document.activeElement ? 这个属性可以让你看到哪个元素是活动/有焦点。 有什么主要的陷阱/实现之间的差异?