JQuery的$(element).text()的Prototype等价物是什么?
鉴于以下片段:
<div id="myDiv">
This is my text <span>with a span</span>
</div>
JQuery可以得到内部字符串:
$('#myDiv').text();
Prototype中有一种更直观的方法:
$('myDiv').pluck('innerHTML').first().stripTags();
哼,不
$('myDiv').innerHTML.stripTags();
工作?
编辑:如果你真的想在Prototype中使用text()
方法,你可以这样做:
Class.extend(Element, {
text: function(element) {
return element.innerHTML.stripTags();
}
};
然后像这样使用它:
var txt = $('myDiv').text();
链接地址: http://www.djcxy.com/p/47071.html
上一篇: What is the Prototype equivalent of JQuery's $(element).text()?