问题标签 [hidden]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
13 回答
190807 浏览

eclipse - 如何让 Eclipse 显示 .* 文件?

默认情况下,Eclipse 不会显示我在项目中维护的 .htaccess 文件。它只是在包查看器树中显示一个空文件夹。我怎样才能让它出现?没有明显的偏好。

0 投票
3 回答
3168 浏览

visual-studio - Visual Studio 冻结/TFS 窗口可能不在屏幕上

我将 Visual Studio 2005 与 Team Foundation Server 一起使用。

当我右键单击源代码控制下的文件并选择“比较”时,VS 似乎会冻结,直到我点击转义。我的猜测是应该弹出的窗口是我无法到达的地方。我尝试尽可能减少所有窗口,但无处可寻。

0 投票
8 回答
23806 浏览

css - 溢出:隐藏和显示:无有什么区别

溢出:隐藏和显示:无有什么区别?

0 投票
4 回答
2581 浏览

hidden - Firefox 上隐藏的 FreeTextBox 错误

我的 ASP.NET 站点中的FreeTextBox富文本编辑器有问题。当我使用 firefox 访问该站点时会出现问题,并且我在隐藏的 div 中有一个 freetextbox 实例。隐藏的 div 也可能是 AJAX 选项卡面板。实际的问题是,当页面加载时它会抛出一个未捕获的异常(萤火虫显示 StoreHtml() 函数)并停止回发!

是否有任何问题和解决方案?

谢谢

0 投票
2 回答
2316 浏览

java - Vista 上的 Java File.canWrite() 和超级隐藏文件

我有一些代码可以有效地做到这一点:

它打印真实。现在奇怪的是,我可以毫无例外地创建文件。此外,另一个程序可以读取我创建的文件。问题是,在 Windows 资源管理器中,该文件根本不显示!

显示您可能正在考虑的隐藏文件,但不,我已打开该选项。

我还发现了有关 Vista 中的“超级隐藏文件”,所以我打开了该选项,但我仍然看不到该文件!也许我没有正确编辑我的注册表 - 我只能假设该文件是超级隐藏的 - 它还能在哪里?

现在的问题是我正在创建一个 html 文件,当我启动浏览器时,它看不到 html 文件,因为它是超级隐藏的。

如何防止 Java 创建超级隐藏文件?这是在 JRE 6 update 6 下运行的。

0 投票
2 回答
10592 浏览

c# - 为什么我的隐藏进程仍然可见?

我通过创建一个System.Diagnostics.Process对象然后将StartInfo动词设置为“打印”来打印文档,然后调用 processStart()方法。

我希望隐藏这个打印过程,所以我正在设置CreateNoWindow = trueWindowStyle = ProcessWindowStyle.Hidden. 但在打印过程中仍会出现应用程序(Word 或 Acrobat)。

我知道如果为进程设置了用户名或密码并且我已经调试并验证它们是空的,那么隐藏的进程设置将被忽略。我什至尝试将它们明确设置为 NULL 无济于事。

我想知道打印操作是否使应用程序表现得好像它需要用户干预(Word 显示“打印文档..”对话框),这否定了隐藏它的设置。

我正在使用 .Net 2.0、C#、Word 2007 和 Windows Vista。

我的实际代码如下:

非常感谢您的帮助...

请注意,我知道我可以使用 Word 或 Acrobat API 来实现相同的目标,但这个问题专门针对 shell 进程的可见性。

0 投票
2 回答
903 浏览

php - How do you resolve a hidden javascript link with php?

I'm trying to parse a bunch of webpages one after the next with PHP, but I noticed that when I fopen the first page, the links to the following pages are hidden in javascript.

Is there anyway I can continue on to parse the next webpages? If the url had a variable like "page=2" encrypted into it I would go through them that way, but the urls are encrypted.

-LPG

0 投票
1 回答
3175 浏览

asp.net - asp.net 隐藏字段未设置新值,需要禁用替代

我的页面上有一个隐藏字段

它是由这串代码设置的,一个 onclick 事件到 gridview 的行:

这就是发生的情况:当页面第一次加载时,隐藏字段是未定义的,它应该是。当我单击一行然后单击“选择”按钮时,该按钮将调用它:

网格视图被禁用(与选择按钮一起)并且出现另一个网格视图(这应该取决于在第一个网格视图中选择的内容)。所以现在,问题来了。当我单击 gridview 中的一行时(我只是在谈论初始的 gridview,而不是出现的第二个,这不是问题),然后单击选择,所有内容都变灰,并且大多数时候,页面加载时选定的行将突出显示(其他时候由于某种原因默认为第 2 行)。然后,假设您单击第 4 行,然后单击第 1 行,然后单击选择,由于某种原因,第 4 行将保持突出显示,然后第 4 行的数据将填充第二个网格视图,就像您从未单击第 1 行一样。但是如果我单击第 4 行然后单击第 1 行,然后再次单击第 1 行,是否保存。有谁知道为什么会这样?

Also, I'm pretty much trying to disable the first gridview when select is hit so I do

而不是 GridView.Enabled = false;

如果用户重新单击搜索按钮(之前位于页面上的另一个按钮,使此 gridview 变得可见),我希望辅助 gridview 隐藏,并且主 gridview(这个有问题)重新启用. 但是做

当搜索按钮被触发时,只会禁用gridview,这很奇怪。现在我知道除了 IE 之外的任何其他浏览器都不支持禁用字段,我只使用它是因为我需要检查 gridview 是否被禁用,因此用户在做出选择后无法单击另一行(发生这种情况如果我不执行以下操作:

那么有人可以让我知道完成该任务的另一种方法吗?再次提前感谢。

0 投票
1 回答
273 浏览

css - Fixed footer obscure firefox search match

I have a site with a fixed footer at the bottom of every page. The content area above the footer has a appropriate margin to ensure that content does not hide behind the footer when scrolling down.

However, when a simple text search if performed in the browser (firefox) the search term is usually hidden behind the footer as the page normally (without the footer that is) scrolls to just bring the search term into view.

How can I work around this issue?

I have one idea in mind: Make the content area of a fixed height (browser viewport height - footer height) and give it a scroll instead of the browser. Not the best solution but that is an option. What would be the drawbacks to this option?

0 投票
1 回答
189 浏览

c# - Why doesn't my application show when started by my service

i have used this code in my service onsessionchange event, the service start my application on logon event but application is hidden but running. i couldn't view