Cómo cambiar href de la etiqueta <a> al hacer clic en el botón a través de javascript

127

¿Cómo cambiar el hrefvalor de atributo de una <a/>etiqueta a través de Javascript al hacer clic en el botón?

<script type="text/javascript">
  function f1()
  {
    document.getElementById("abc").href="xyz.php"; 
  }
</script>

<a href="" id="abc">jhg</a>
<a href="" id="" onclick="f1()">jhhghj</a>
Chauhan
fuente
La forma de accesibilidad dicta no utilizar enlaces de esta manera. Aquí: xkr.us/js/links
Consultoría gratuita el

Respuestas:

177

Sin tener un href, el clic volverá a cargar la página actual, por lo que necesita algo como esto:

<a href="#" onclick="f1()">jhhghj</a>

O evite el desplazamiento como este:

<a href="#" onclick="f1(); return false;">jhhghj</a>

O return falseen su f1función y:

<a href="#" onclick="return f1();">jhhghj</a>

.... o, la manera discreta:

<a href="#" id="abc">jhg</a>
<a href="#" id="myLink">jhhghj</a>

<script type="text/javascript">
  document.getElementById("myLink").onclick = function() {
    document.getElementById("abc").href="xyz.php"; 
    return false;
  };
</script>
Nick Craver
fuente
sugerir agregar event && event.preventDefault && event.preventDefault();antesreturn false
袁文涛
34

Exactamente lo que hizo Nick Carver allí, pero creo que sería mejor si usara el método DOM setAttribute.

<script type="text/javascript">
   document.getElementById("myLink").onclick = function() {
   var link = document.getElementById("abc");
   link.setAttribute("href", "xyz.php");
   return false;
   }
</script>

Es una línea adicional de código, pero la estructura es mejor.

jakobhans
fuente
8
En mi opinión, no hay necesidad aquí, esta ha sido una propiedad DOM para siempre, .hreffunciona en todos los navegadores ... por ejemplo, ¿usaría en .getAttribute("id")lugar de solo .id? :)
Nick Craver
3
Tienes razón, no hace nada especial o diferente, es solo estructuralmente sabio. Me gusta tener todas mis funciones DOM de esta manera para su posterior depuración / revisión: es más fácil para mí ver qué está haciendo la función con estos métodos. Obviamente su respuesta es correcta :)
jakobhans
7

eliminar hrefatributo:

<a id="" onclick="f1()">jhhghj</a>

Si los estilos de enlace son importantes, entonces:

<a href="javascript:void(f1())">jhhghj</a>
atlavis
fuente
1
una <a>etiqueta sin hrefatributo? ¿Qué? ¿por qué?
Shikiryu
1
Dejar fuera el href cambiará su estilo y comportamiento. Luego actúa como un ancla en lugar de un enlace.
Cobra_Fast
1
Gracias por responder, muchachos, realmente me están ayudando.
Chauhan
1
no href lo hace un ancla, haga clic en conversiones a un enlace, bastante normal
Consultoría gratuita el
1
<a href="#" id="a" onclick="ChangeHref()">1.Change 2.Go</a>

<script>
function ChangeHref(){
document.getElementById("a").setAttribute("onclick", "location.href='http://religiasatanista.ro'");
}
</script>
usuario3325593
fuente
0

Para que un enlace cambie dinámicamente al hacer clic en él:

<input type="text" id="emailOfBookCustomer" style="direction:RTL;"></input>
        <a 
         onclick="this.href='<%= request.getContextPath() %>/Jahanpay/forwardTo.jsp?handle=<%= handle %>&Email=' + document.getElementById('emailOfBookCustomer').value;" href=''>
    A dynamic link 
            </a>
Mohsen Abasi
fuente
0

Aquí está mi opinión al respecto. Necesitaba crear una URL recopilando el valor de un cuadro de texto, cuando el usuario presiona el botón Enviar.

<html>
<body>

Hi everyone

<p id="result"></p>

<textarea cols="40" id="SearchText" rows="2"></textarea>

<button onclick="myFunction()" type="button">Submit!</button>

<script>
function myFunction() {
    var result = document.getElementById("SearchText").value;
	document.getElementById("result").innerHTML = result;
	document.getElementById("abc").href="http://arindam31.pythonanywhere.com/hello/" + result;
}		
</script>


<a href="#" id="abc">abc</a>

</body>
<html>

Arindam Roychowdhury
fuente
-1

Sé que es un poco viejo post. Aún así, podría ayudar a alguien.

En lugar de etiqueta, si es posible, puede hacerlo también.

 <script type="text/javascript">
        function IsItWorking() {
          // Do your stuff here ...
            alert("YES, It Works...!!!");
        }
    </script>   

    `<asp:HyperLinkID="Link1"NavigateUrl="javascript:IsItWorking();"`            `runat="server">IsItWorking?</asp:HyperLink>`

¿Algún comentario sobre esto?

4u.Ans
fuente