我正在从输入单选按钮调用一个函数并具有以下功能:
onClick=\"changeBilling('".$results['id']."', this.value)\"
但是我的 this.value 不能正常工作。当我在页面中查找时,id 填充正确,但第二个值仍然显示 this.value,而不是调用函数的按钮的值。
我在浏览器元素管理器中看到了这一点:
onclick="changeBilling('149', this.value)"
我究竟做错了什么?
单选按钮:
<input type='radio' name='billed' value='Yes' onClick=\"changeBilling('".$results['id']."', this.value)\"/> Yes<br /><input type='radio' name='billed' value='No' onClick=\"changebilling('".$results['id']."', this.value)\" checked/> No
理想输出:
onclick="changeBilling('149', 'Yes')"