• 2022-06-08
    设有以下两行HTML代码:01 <;input name="xm" type="text" />;02 <;input type="password" />;下列哪些选择器仅可以选择01行标签
    A: input{}
    B: input[name]{}
    C: input[type]{}
    D: input[name=xm]{}
    E: input[name*=xm]{}