如何用氚删除一段javascript文本?

时间:2015-02-20 16:42:43

标签: xml xpath find tritium

我要使用这段氚文本来删除一段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)).

另外,如果我用text()替换text(),它仍然不起作用,谢谢。

1 个答案:

答案 0 :(得分:0)

您好,请确认混音器stdlib存在于您的Mixer.loc文件中,然后尝试使用以下替换: http://www.tritium.io/current#Text.replace(Regexp%20%25search,%20Text%20%25with)

 $(".//script[contains(text(), 'txt2remove')]") {
    text() {
      replace(/txt2remove/, '') 
    }
 }

这应该有效。

Juan Camilo