a标签获取value值

时间:2022-11-26 11:43:55

之前习惯性写过这样的方法来获取a标签的值

<a href='javascript:void(0)' onclick='alert(this)'>预约</a>

a标签获取value值

其中的原因是alert(obj)可以看成alert(obj.toString())因为打印的是字符串 内部其实是调用 toString()方法
a元素的toString()方法和别的元素不一样
a元素的toString()方法默认是

window.HTMLAnchorElement.prototype.toString = function () {
    return this.getAttribute("href");
}

所以a标签通过这种方式是不能获取到value值的

<button onclick='alert(this.value)' value="hello">提交</button>
<input onclick='alert(this.value)' value='world'/>

但是对于其它的元素,这种方式是可行的