• 2022-06-09 问题

    下列选项中,能过vue指令可以实现为按钮绑定点击事件的是() A: <button $click="showInfo"></button> B: <button C: click="showInfo"></button> D: <button @click="showInfo"></button> E: <button onclick="showInfo"></button>

    下列选项中,能过vue指令可以实现为按钮绑定点击事件的是() A: <button $click="showInfo"></button> B: <button C: click="showInfo"></button> D: <button @click="showInfo"></button> E: <button onclick="showInfo"></button>

  • 2022-05-28 问题

    下列JavaScript语句中,能实现单击一个按钮时弹出一个消息框的是()。 A: <button value="鼠标响应"onClick=alert("确定")></button> B: <inputtype="button"value="鼠标响应"onClick=alert("确定")> C: <input type="button"value="鼠标响应"onChange=alert("确定")> D: <button value="鼠标响应"onChange=alert("确定")></button>

    下列JavaScript语句中,能实现单击一个按钮时弹出一个消息框的是()。 A: <button value="鼠标响应"onClick=alert("确定")></button> B: <inputtype="button"value="鼠标响应"onClick=alert("确定")> C: <input type="button"value="鼠标响应"onChange=alert("确定")> D: <button value="鼠标响应"onChange=alert("确定")></button>

  • 2022-06-11 问题

    在HTML页面中包含一个按钮控件mybutton,如果要实现单击该按钮时调用自定义的JavaScript函数compute(),要编写的HTML代码是()。 A: <inputname="mybutton"type="button"onBlur="compute()"value="计算"> B: <inputname="mybutton"type="button"onFocus="compute()"value="计算"> C: <inputname="mybutton"type="button"onClick="functioncompute()"value="计算"> D: <inputname="mybutton"type="button"onClick="compute()"value="计算">

    在HTML页面中包含一个按钮控件mybutton,如果要实现单击该按钮时调用自定义的JavaScript函数compute(),要编写的HTML代码是()。 A: <inputname="mybutton"type="button"onBlur="compute()"value="计算"> B: <inputname="mybutton"type="button"onFocus="compute()"value="计算"> C: <inputname="mybutton"type="button"onClick="functioncompute()"value="计算"> D: <inputname="mybutton"type="button"onClick="compute()"value="计算">

  • 2022-06-07 问题

    在表单中添加提交按钮,实现在用户单击“提交“按钮时,自动将表单提交到ACTION属性中指定的位置。下列语句正确的是( )。 A: <form method=“post” action=“”><input type=“button”  value=“提交” name=“b1”></form> B: <form method=“post” action=“”><input type=“reset”  value=“提交” name=“reser1”></form> C: <form method=“post” action=“”><input type=“submit”  value=“提交” name=“submit1”></form> D: <form method=“post” action=“”><input type=“submit”  value=“提交” name=“b1”><button></form>

    在表单中添加提交按钮,实现在用户单击“提交“按钮时,自动将表单提交到ACTION属性中指定的位置。下列语句正确的是( )。 A: <form method=“post” action=“”><input type=“button”  value=“提交” name=“b1”></form> B: <form method=“post” action=“”><input type=“reset”  value=“提交” name=“reser1”></form> C: <form method=“post” action=“”><input type=“submit”  value=“提交” name=“submit1”></form> D: <form method=“post” action=“”><input type=“submit”  value=“提交” name=“b1”><button></form>

  • 2022-06-19 问题

    点击页面中的按钮,使之打开一个新窗口,加载一个网页, 以下JavaScript代码能够实现该功能的是( ) A: <inputtype=”button” value=”new” onclick=”open(‘new.html’,’_blank’)”/> B: <input type=”button” value=”new” onclick=”window.location=’new.html’”/> C: <form target=”_blank” action=”new.html”><input type=”submit” value=”new”/></form> D: <input type=”button” value=”new” onclick=”location.assign(‘new.html’)”/>

    点击页面中的按钮,使之打开一个新窗口,加载一个网页, 以下JavaScript代码能够实现该功能的是( ) A: <inputtype=”button” value=”new” onclick=”open(‘new.html’,’_blank’)”/> B: <input type=”button” value=”new” onclick=”window.location=’new.html’”/> C: <form target=”_blank” action=”new.html”><input type=”submit” value=”new”/></form> D: <input type=”button” value=”new” onclick=”location.assign(‘new.html’)”/>

  • 2022-06-19 问题

    点击页面的按钮,使之打开一个新窗口,加载一个网页,以下JavaScript代码中可行的是( ) A: <input type="button" value="new"onclick="open('new.html', '_blank') "/> B: <input type="button" value="new"onclick="window.location='new.html';"/> C: <input type="button" value="new"onclick=" location.assign('new.html');"/> D: <form target="_blank" action="new.html"><input type="submit" value="new"/></form>

    点击页面的按钮,使之打开一个新窗口,加载一个网页,以下JavaScript代码中可行的是( ) A: <input type="button" value="new"onclick="open('new.html', '_blank') "/> B: <input type="button" value="new"onclick="window.location='new.html';"/> C: <input type="button" value="new"onclick=" location.assign('new.html');"/> D: <form target="_blank" action="new.html"><input type="submit" value="new"/></form>

  • 2022-05-31 问题

    在HTML文档中包含一个按钮,那么为mybutton,如果要实现点击该按钮,调用定义的JS函数cd(),正确的代码是() A: <input name=”mybutton” type=”button” click=”cd()” value=”请单击计算”> B: <input name=”mybutton” type=”button” focus=”cd()” value=”请单击计算”> C: <input name=”mybutton” type=”button” onclick=”cd()” value=”请单击计算”> D: <input name=”mybutton” type=”button” onfocus=”cd()” value=”请单击计算”>

    在HTML文档中包含一个按钮,那么为mybutton,如果要实现点击该按钮,调用定义的JS函数cd(),正确的代码是() A: <input name=”mybutton” type=”button” click=”cd()” value=”请单击计算”> B: <input name=”mybutton” type=”button” focus=”cd()” value=”请单击计算”> C: <input name=”mybutton” type=”button” onclick=”cd()” value=”请单击计算”> D: <input name=”mybutton” type=”button” onfocus=”cd()” value=”请单击计算”>

  • 2022-06-11 问题

    在HTML页面中包含一个按钮控件mybutton,如果要实现点击该按钮时调用已定义的Javascript函数compute,要编写的HTML代码是( ) A: <input type="button" name="mybutton" value="计算" onblur="compute()" /> B: <input type="button" name="mybutton" value="计算" onfocus="compute()" /> C: <input type="button" name="mybutton" value="计算" onclick="function compute()" /> D: <input type="button" name="mybutton" value="计算" onclick="compute()" />

    在HTML页面中包含一个按钮控件mybutton,如果要实现点击该按钮时调用已定义的Javascript函数compute,要编写的HTML代码是( ) A: <input type="button" name="mybutton" value="计算" onblur="compute()" /> B: <input type="button" name="mybutton" value="计算" onfocus="compute()" /> C: <input type="button" name="mybutton" value="计算" onclick="function compute()" /> D: <input type="button" name="mybutton" value="计算" onclick="compute()" />

  • 2022-06-19 问题

    下列哪一项表示的不是按钮?() A: <input type=”text”> B: <input type=”reset”> C: <input type=”submit”> D: <input type=”button”>

    下列哪一项表示的不是按钮?() A: <input type=”text”> B: <input type=”reset”> C: <input type=”submit”> D: <input type=”button”>

  • 2022-07-27 问题

    在表单中的隐藏域代码是() A: <input type="password"> B: <input type="hidden"> C: <input type="reset"> D: <input type="button">

    在表单中的隐藏域代码是() A: <input type="password"> B: <input type="hidden"> C: <input type="reset"> D: <input type="button">

  • 1 2 3 4 5 6 7 8 9 10