我正在使用谷歌小工具编写一个简短的脚本并尝试插入谷歌网站。当用户按下Go按钮时,javascript函数被触发并且一切正常,但是当用户按下时Enter,出现错误:
Missing or malformed url parameter
我不确定这是由我的代码或谷歌小工具/网站引起的。
我的html代码:
<form name="theform">
<input type="text" size="20" id="search"/>
<INPUT TYPE="submit" VALUE="Go!" ONCLICK="GotoURL(this.form)">
</form>
javascript函数
function GotoURL(dl) {
var mySearch = document.getElementById("search").value;
url='some_url'+mySearch;
window.open(url,'_blank');
}
谢谢