Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

251
Views
¿Cómo asegurarse de que al ingresar la entrada, el signo "+" no da como este "% 2b"?

Así es como puede deshacerse de esto para que siempre se muestre el signo "+" y no los caracteres incomprensibles. No sé cómo puedes escribir el código para que funcione normalmente.

 const [isSearchOpen, setSearchOpen] = useState(false), formRef = useRef(null); useClickOutside(formRef, () => setSearchOpen(false)); const [inputText, setInputText] = useState(""); const handleSubmit = e => { if (inputText.length >= 150) { alert('Maximum length 150 characters ') e.preventDefault(); } }; return ( <form ref={formRef} className={cn("search-form", { "search-form--focus": isSearchOpen, })} onClick={() => setSearchOpen(true)} onKeyPress={() => setSearchOpen(true)} action="/search" // eslint-disable-next-line role="searchbox" onSubmit={handleSubmit} > <input value={inputText} onChange={e => setInputText(e.target.value)} className="search-form__input" name="filter" type="text" /> <button className="search-form__button" type="submit" aria-label="Header search button" /> </form> ); };
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!