firebug, inspect element etc. Is there a way to hide it?

可紊 提交于 2019-12-11 09:13:10

问题


I'm just wondering for example I have a code like this:

<input type="text" value="value" id="txtbox" style="display:none" />

is there a way that it could not be crawled or find at firebug? or any other inspect element?

hope my question make sense thanks in advance for response :) ..


回答1:


No. Anything within an HTML document, as served by a server, can easily be processed simply by doing a GET request on it and reading the result as plain text. So anything you might try in HTML, CSS, JavaScript or FooScript would have no effect.



来源:https://stackoverflow.com/questions/13698446/firebug-inspect-element-etc-is-there-a-way-to-hide-it

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!