onclick中,获取不了$(this),带参数
Posted 大山008
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了onclick中,获取不了$(this),带参数相关的知识,希望对你有一定的参考价值。
今天写项目,发现onclick中,$(this)默认绑定的是window对象,而不是当前点击对象。试了一下,onclick中,必须带this,在function内,才能获取当前对象。
原因:在html4中,onclick是全局时间属性。参考:http://www.w3school.com.cn/tags/html_ref_eventattributes.asp
所以,在事件中,添加this,返回触发事件的html元素
<a href=\"#\" class=\"up\" onClick=\"upward(this,1)\">上移</a> <a href=\"#\" class=\"down\" onClick=\"downward(this,1)\">下移</a></td></tr>
<a href=\"#\" class=\"up\" onClick=\"upward(this,2)\">上移</a> <a href=\"#\" class=\"down\" onClick=\"downward(this,2)\">下移</a></td></tr>
function upward(obj,x){ var y; if(x == 1){ y = $("#paramerIds"); }else if(x == 2)
{ y = $("#exParamerIds"); }
}
以上是关于onclick中,获取不了$(this),带参数的主要内容,如果未能解决你的问题,请参考以下文章
Javascript 中调参数的脚本onclick="select(this)" this 怎么解释?