My code is,
我的代码是,
<html>
<head>
<title>onclick test</title>
<script type="text/javascript">
var googleWindow = window.open('https://www.google.com');
window.onload = change;
function change(){
alert('Hello');
}
</script>
</html>
<html>
<head>