在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=”请单击计算”>
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,如果要实现点击该按钮时调用已定义的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: <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代码是( )。 未知类型:{'options': ['[input name=”mybutton” type=”button” onClick=”compute” value=”计算”]', '[input name=”mybutton” type=”button” onFocus=”compute()” value=”计算”]', '[input name=”mybutton” type=”button” onClick=”function compute()” value=”计算”]', '[input name=”mybutton” type=”button” onClick=”compute()” value=”计算”]'], 'type': 102}
- 在HTML页面中包含一个按钮控件mybutton,如果要实现单击该按钮时调用自定义的JavaScript函数compute,要编写的HTML代码是( )。 A: <input type="button" onBlur="compute()" value="计算"> B: <input type="button" onFocus="compute()" value="计算"> C: <input type="button" onClick="function compute()" value="计算"> D: <input type="button" onClick="compute()" value="计算">
- 点击页面的按钮,使之打开一个新窗口,加载一个网页,以下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>