js click to switch text

// javascript
var  a = document.getElementsByTagName( 'a' )[0]
a.addEventListener( 'click' , function (){
     if (a.innerText ==  '123' ){a.innerText =  '456' }
     else {a.innerText =  '123' }
}, false )
 
// jQuery
$( 'a' ).click( function (){
     if ($( this ).text() ==  '123' )
         {$( this ).text( '456' )}
     else
         {$( this ).text( '123' )}
})

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325988520&siteId=291194637