我需要知道如何制作类似 a 的东西jQuery
function
,而不是使用 CSS 选择器,就像这样:
function getId( item ) {
return document.getElementById( item );
}
getId('elementID').firstFunction('property').secondFunction('property');
但我不知道我究竟如何发送getId
结果来firstFunction
为getId()
元素制作一些东西,然后完成secondFunction
工作,我一直在尝试,prototype
但我无法让它工作。