function()
{
$(this).slibings("li").removeClass("artive")
$(this).addClass("artive")
})
你好!convertThisText这个函数的方法体是怎样的?
暂时我就理解为通过传入字符串进行解析,将其中的标签中的文字进行转换吧。
既然只是传入一个字符串,那么或许你可以这样试试:
//将body的内容复制后,找到这个id为cba的input,移除它后,即为所需字符串。
var cloneStr = $("body").clone().find("#cba").remove().end()
$("body").html( convertThisText( cloneStr.html() ) )
试试吧~
--------------------------------------------------------------------------------------------