gpt4 book ai didi

jquery - 我如何限制 jquery 中工具提示的边框?

转载 作者:行者123 更新时间:2023-11-28 03:36:38 26 4
gpt4 key购买 nike

你好,我正在使用带有 codemirror 的工具提示,我想要的是使工具提示的边框不超出编辑器的边框...请参阅此链接以显示工具提示的边框如何超出编辑器的边框jsbin

这是代码:CSS:

.tooltip{background:red;z-index:1000;}

脚本:

var cm = CodeMirror(document.getElementById("editor"), {
value: "function myScript() {\n return 100;\n}",
mode: "javascript",
indentUnit: 4,
lineNumbers: true,

});

var textMarker;

$('#add').click(function() {
textMarker = cm.markText({
line: 1,
ch: 4
}, {
line: 1,
ch: 10
}, {
className: 'marked-text'
});

$('.marked-text').tooltip({
title: 'This is a return statement sfdl glrflg rgmlf',
container: 'body',
delay: { "show": 500, "hide": 100 },
animation: false
});
});

$('#remove').click(function() {
if (textMarker) {
textMarker.clear();
}
});

我该如何解决这个问题?

注意:我想显示tooltip的标题,所以panding 0不能解决问题

最佳答案

我已将 0 填充添加到您的 CSS 代码中。

html, body {
padding: 0;
}

this你想达到什么目的?

关于jquery - 我如何限制 jquery 中工具提示的边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44446349/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com