将我的按钮添加到Google网站

时间:2012-12-04 16:49:51

标签: html button sites

点击我的google网站上的编辑页面,然后添加html框,我添加此代码

<button type="button" onclick="window.open('http://www.google.com','_blank','resizable=yes')" >Click to open Google</button>

但由于某些原因它不起作用,虽然我在一些html编辑器上测试它并且它有效。 有什么想法吗?

2 个答案:

答案 0 :(得分:2)

你也可以试试这个

<a href="www.google.com" targer="_blank"><input type="button" value="Click to open Google" /></a>

答案 1 :(得分:1)

它可能是某种安全功能,代码是正确的,你可以看到它Here。但是Here它也不起作用。

您可以尝试使用链接:

<a href="www.google.com" target="_blank">Click to open Google</a>

Ps:最好关闭所有标签(按钮文字后</button>):

<button type="button" onclick="window.open('http://www.google.com','_blank','resizable=yes')" >Click to open Google</button>