当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Common.clearHtml方法代码示例

本文整理汇总了TypeScript中common.Common.clearHtml方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Common.clearHtml方法的具体用法?TypeScript Common.clearHtml怎么用?TypeScript Common.clearHtml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在common.Common的用法示例。


在下文中一共展示了Common.clearHtml方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: executeIfTextUnchanged

 executeIfTextUnchanged(expressionText, "searchText", 300, function() {
    var searchCriteria = {
          caseSensitive: isCheckboxSelected("inputCaseSensitive"),
          regularExpression: isCheckboxSelected("inputRegularExpression"),
          wholeWord: isCheckboxSelected("inputWholeWord")
       };
    var expressionPattern = null;
    
    if(fileFilterPatterns) {
       expressionPattern = $("#fileFilterPatterns").html();
       expressionPattern = Common.clearHtml(expressionPattern);
    }
    if(expressionText) {
       expressionText = Common.clearHtml(expressionText);
    } 
    listFunction(expressionText, expressionPattern, searchCriteria, function(list, requestedText) {
       var currentText = $("#searchText").html();
       
       if(!requestedText || currentText == requestedText) {
          var content = createDialogListTable(list);
          
          if(content.content){
             $("#dialog").html(content.content);
          }else {
             $("#dialog").html('');
          }
          // this is kind of crap, but we need to be sure the html is rendered before binding
          if(content.init) {
             setTimeout(content.init, 100); // register the init function to run 
          }
       }
    });
 });
开发者ID:snapscript,项目名称:snap-develop,代码行数:33,代码来源:dialog.ts

示例2: function

 event.onComplete = function() {
    var sel = grid.getSelection();
    if (sel.length == 1) {
       var record = grid.get(sel[0]);
       var text = $("#dialogPath").html();
       var expression = Common.clearHtml(text);
       
       VariableManager.toggleExpandEvaluation(record.path, expression);
    }
    grid.selectNone();
    grid.refresh();
 }
开发者ID:snapscript,项目名称:snap-develop,代码行数:12,代码来源:dialog.ts


注:本文中的common.Common.clearHtml方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。