2

我正在使用精彩的编辑器bootstrap-markdown但它们显示了如下所示的编辑按钮列表编辑按钮

我想更改当您单击“添加网址”标签时显示的默认警报按钮。

4

1 回答 1

2

770您可以在文件的行中编辑它(取决于您想要做什么)bootstrap-markdown.js

你会在那里找到这段代码:

name: 'groupLink',
data: [{
  name: 'cmdUrl',
  title: 'URL/Link',
  icon: 'icon icon-globe',
  callback: function(e){
    // Give [] surround the selection and prepend the link
    var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link

    if (selected.length == 0) {
      // Give extra word
      chunk = 'enter link description here'
    } else {
      chunk = selected.text
    }

    link = prompt('Insert Hyperlink','http://')

让我们知道这些信息是否有帮助。

于 2013-08-02T13:12:09.460 回答