如果输入字段“account”超过10个字符,我需要访问另一个服务器,我如何用JavaScript动态地将表单操作目标更改为server2?
<form method="get" action="server1/login.php"
class="get-started-form flex items-center flex-wrap">
<input name="account" type="text"
如果输入字段“account”超过10个字符,我需要访问另一个服务器,我如何用JavaScript动态地将表单操作目标更改为server2?
<form method="get" action="server1/login.php"
class="get-started-form flex items-center flex-wrap">
<input name="account" type="text"
1条答案
按热度按时间ovfsdjhp1#
您可以监听输入框上的
keyup
event,以检测文本值何时更改,然后使用value
property读取值。之后,比较长度,并根据需要动态修改form
元素的action
property。