• 2021-04-14
    有如下一段代码,请问它的功能是()
  • 创建一个文本框

    内容

    • 0

      2.HTML5中,要实现如图所示的效果的代码是( ) A: <;input name="color" type="text"/>; B: <;input name="color" type="textarea"/>; C: <;input name="color" type="color"/>; D: <;input name="color" type="radio"/>;

    • 1

      "HTML代码<input type=text name=""foo""size=20>表示( )。

    • 2

      怎么才能隐藏下面的元素? <input id="id_txt" name="txt" type="text" value="" />

    • 3

      设有以下两行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]{}

    • 4

      有如下一段代码: title = 'Company CEO' print('-'.join(title.split())) 请问输出结果为: