首页 > 代码库 > Javascript 试题汇集

Javascript 试题汇集

1.点击一个按钮,打开一个页面的几种方法:

   <input type="button" value="http://www.mamicode.com/location" onclick="window.location=‘index1.html‘">    <input type="button" value="http://www.mamicode.com/assign" onclick="location.assign(‘index1.html‘)">    <input type="button" value="http://www.mamicode.com/open" onclick="window.open(‘index1.html‘)">    <form target="_blank" action="index1.html">        <input type="submit" value="http://www.mamicode.com/new">    </form>

下面两种是打开一个新的页面。

2.

Javascript 试题汇集