从下面的代码中,请考虑<#><#>作为一些HTML标签
var s =<#> heading<#>我想得到这个文字;
我想操纵&得到"我想得到这个文字"仅
要求的结果: 提醒(" s>>" + s);
答案 0 :(得分:0)
您可以尝试:
var output = $('<div>').html(s).contents().last().text().trim();
输出:
"I want to get this text"
答案 1 :(得分:0)
你可以使用这样的东西,
var s = '<h1>heading</h1> I want to get this text';
alert($('<span>').html(s).contents().filter(function(){
return this.nodeType==3;
}).text());