gpt4 book ai didi

javascript - 提交时的表单重定向不起作用,为什么?

转载 作者:行者123 更新时间:2023-12-02 15:40:25 24 4
gpt4 key购买 nike

我的搜索表单上有以下代码:

<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 中的引号是错误的。有人可以帮忙吗?

最佳答案

您应该将字符串与对象值连接起来。在您的情况下 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;">

关于javascript - 提交时的表单重定向不起作用,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32628353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com