在文本选择之前和之后添加标记(jQuery)

时间:2018-08-11 08:26:32

标签: javascript jquery html

我想在/usr/bin/java -Dcom.webmethods.jms.clientIDSharing=true -jar myapp.jar 中的选定文本之前和之后添加标记,例如ios do:

使用此标记,用户应在必要时继续选择。我该如何使用jQuery?使用此js脚本获取的选定文本。

<script src="jquery.min.js"></script>
<script src="mustache.min.js"></script>

<script id="template1" type="x-tmpl-mustache" src="template1.html"></script>
<script id="template2" type="x-tmpl-mustache" src="template2.html"></script>

<script type="text/javascript">
$('script[type="x-tmpl-mustache"]').each(function(idx, templateSource) {
    $.holdReady(true);
    $.get(templateSource.src, function(template) {
        templateSource.text = template;
        $.holdReady(false);
    });
});
$(document).ready(function() {
    Console.log("All templates loaded.");
});
</script>
div

0 个答案:

没有答案