我有这段氚文本,我将使用它来删除一段 javascript 代码。
# to remove an inline js code based on text search
$("//script[contains(text(),'textiwanttoremove')]") {
text(){
replace('thetextiwanttoremove','')
}
}
但是,此代码不起作用。我得到一个错误,
Failed to create body.ts transformer:
scripts/main.ts:13: function Text.$(Text) does not exist in namespace tritium; (called from Text.with(Regexp)).
另外,如果我用 inner() 替换 text(),它仍然不起作用,谢谢。