点击我的google网站上的编辑页面,然后添加html框,我添加此代码
<button type="button" onclick="window.open('http://www.google.com','_blank','resizable=yes')" >Click to open Google</button>
但由于某些原因它不起作用,虽然我在一些html编辑器上测试它并且它有效。 有什么想法吗?
答案 0 :(得分:2)
你也可以试试这个
<a href="www.google.com" targer="_blank"><input type="button" value="Click to open Google" /></a>
答案 1 :(得分:1)