Actually there is such a button:
<input type="button" value="-" onclick="changeSign(this.value)" name="r_abs_sph_sign" id="r_abs_sph_sign_min"/>
When you click, its value attribute with a minus should change to a plus. That's actually the question - how to use jQuery in the changeSign () function to select this button and change its value?
PS: There will be about eight such buttons on the page, so I would like to do all this with one function and not to write my own for each button.