Questions tagged «attributes»

属性标签应用于与对象,元素或文件等的属性有关的任何问题。




4
测试类是否具有属性?
我正在尝试进行一些“测试优先”的开发,并试图验证我的类是否标记有属性: [SubControllerActionToViewDataAttribute] public class ScheduleController : Controller 如何对类分配了该属性的单元测试?


6
如何创建重复的允许属性
我正在使用从属性类继承的自定义属性。我正在这样使用它: [MyCustomAttribute("CONTROL")] [MyCustomAttribute("ALT")] [MyCustomAttribute("SHIFT")] [MyCustomAttribute("D")] public void setColor() { } 但是显示“重复的'MyCustomAttribute'属性”错误。 如何创建重复的允许属性?
96 c#  attributes 


13
使HTML5视频海报的尺寸与视频本身的尺寸相同
有谁知道如何调整HTML5视频海报的大小,使其适合视频本身的确切尺寸? 这是显示问题的jsfiddle:http : //jsfiddle.net/zPacg/7/ 这是代码: HTML: <video controls width="100%" height="100%" poster="http://www.wpclipart.com/blanks/buttons/glossy_buttons/glossy_button_blank_orange_rectangle.png"> <source src="http://demo.inwebson.com/html5-video/iceage4.mp4" type="video/mp4" /> <source src="http://demo.inwebson.com/html5-video/iceage4.ogg" type="video/ogg" /> <source src="http://demo.inwebson.com/html5-video/iceage4.webm" type="video/webm" /> </video>​ CSS: video{ border:1px solid red; }​ 请注意,橙色矩形不会缩放到视频的红色边框。 另外,仅在下面添加CSS也不起作用,因为它会重新调整视频和海报的比例: video[poster]{ height:100%; width:100%; }

6
有人可以解释attr吗?
我正在查看Honeycomb Gallery示例代码(在此处),并且在尝试在自己的应用程序中添加操作项时遇到了以下代码: <item android:id="@+id/camera" android:title="Camera" android:icon="?attr/menuIconCamera" android:showAsAction="ifRoom" /> 这使?attr我陷入困境。有人可以解释一下这是什么吗?这与可绘制对象有什么关系?我似乎在Google上找不到任何好的信息。还有没有可以用于图标而不是仅用于图标的属性列表或画廊menuIconCamera? 谢谢 编辑:我做了一些更多的环顾四周,发现attrs.xml看起来像这样: <resources> <declare-styleable name="AppTheme"> <attr name="listDragShadowBackground" format="reference" /> <attr name="menuIconCamera" format="reference" /> <attr name="menuIconToggle" format="reference" /> <attr name="menuIconShare" format="reference" /> </declare-styleable> 不幸的是,这令我更加困惑。这是在做什么

7
无法在“对象”类的实例上设置属性
因此,我在回答这个问题的同时玩弄Python ,发现这是无效的: o = object() o.attr = 'hello' 由于AttributeError: 'object' object has no attribute 'attr'。但是,对于从对象继承的任何类,它都是有效的: class Sub(object): pass s = Sub() s.attr = 'hello' 打印s.attr将按预期显示“ hello”。为什么会这样呢?在Python语言规范中,有什么规定不能将属性分配给香草对象?

2
使用JavaScript获取用户代理
我想要一个可以捕获用户的用户代理并将其支持给属性的脚本。 我正在制作网站问题联系表格,通常需要知道用户使用的是哪种浏览器。如何检测用户代理字符串并将其支持为输入元素的值。 我的html看起来像: <input type="hidden" id="UserAgent" name="User Agent" /> 我希望将用户代理添加为value属性,使其看起来像: <input type="hidden" id="UserAgent" name="User Agent" value="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.53.11 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10" />


6
如何在Java中遍历Class属性?
如何动态遍历Java中的类属性。 例如: public class MyClass{ private type1 att1; private type2 att2; ... public void function(){ for(var in MyClass.Attributes){ System.out.println(var.class); } } } Java有可能吗?
85 java  attributes  loops 

6
Firefox 4:有没有一种方法可以消除所需表单输入中的红色边框?
如果在表单字段中定义了必填项,则Firefox 4会自动在该元素上显示一个红色边框,甚至在用户单击提交按钮之前也是如此。 <input type="text" name="example" value="This is an example" required /> 我认为这会困扰用户,因为他/她一开始没有犯错。 我将其隐藏为初始状态的红色边框,但是如果有一个缺少的字段标记为必填项,则在用户单击“发送”按钮时显示该边框。 我查看了新的伪选择器,:required并:invalid从中选择了新的伪选择器,但是更改是针对验证之前和之后的。(来自Firefox 4必填的输入表单RED border / outline) 有没有一种方法可以在用户提交表单之前禁用红色边框,并在缺少某些字段时显示该边框?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.