Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我设置了一个函数来获取对象的名称属性并运行一个函数。对象的名称设置为变量,但当我调用它时它不起作用。我错过了什么?
http://jsfiddle.net/rexonms/wPUhK/1/
首先,您的调用parent()只会让您获得<p>包含链接,而不是您想要的元素。添加第二个.parent(),或者使用更合适的函数来查找特定容器。
parent()
<p>
.parent()
其次,您的选择器应该是:$('[name='+completed+']')
$('[name='+completed+']')