我的搜索表单上有以下代码:
<form name="search" method="get" action="www.test.gr" enctype="multipart/form-data"
onsubmit="window.location.href='www.test.gr/search/document.getElementById('location').value';
return false;">
但它不起作用。也许在document.getElementById
内引用是错误的。
有人可以帮忙吗?
答案 0 :(得分:2)
您应该使用对象值连接字符串。在您的情况下,document.getElementById('location').value
语句被解释为字符串的一部分。
<form name="search" method="get" action="www.test.gr" enctype="multipart/form-data" onsubmit="window.location.href = 'www.test.gr/search/' + document.getElementById('location').value; return false;">