jquery jpicker 被浏览器顶部切断

发布于 2024-12-28 06:45:15 字数 480 浏览 1 评论 0原文

我正在使用jpicker,它被浏览器切断了。以前有人遇到过这个问题吗?

这是我的 jquery 片段

//jpicker hex color picker
if($('#hexPicker').length) {
    $('#hexPicker').jPicker();
}

这是我的表单片段

<div class="row"> 
    <label for="color">Background Color</label>
    <input type="text" name="color" value="00ff00" class="small" id="hexPicker"  /> 
</div>

在此处输入图像描述

I'm using jpicker and it's being cut off by the browser. Has anyone ever experienced this problem before?

Here's my jquery snippet

//jpicker hex color picker
if($('#hexPicker').length) {
    $('#hexPicker').jPicker();
}

Here's my form snippet

<div class="row"> 
    <label for="color">Background Color</label>
    <input type="text" name="color" value="00ff00" class="small" id="hexPicker"  /> 
</div>

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

溺渁∝ 2025-01-04 06:45:15

我不确定,但你可以尝试一下

$('#hexPicker').jPicker({
  window: {
    position: {
      x: 'screenCenter', // acceptable values "left", "center", "right", "screenCenter", or relative px value
      y: 'center', // acceptable values "top", "bottom", "center", or relative px value
    }
  }
});

I'm not sure but you may try this

$('#hexPicker').jPicker({
  window: {
    position: {
      x: 'screenCenter', // acceptable values "left", "center", "right", "screenCenter", or relative px value
      y: 'center', // acceptable values "top", "bottom", "center", or relative px value
    }
  }
});
屋顶上的小猫咪 2025-01-04 06:45:15

我正在使用 jqueryui 选项卡,定位是一个报告的错误,但使用

window:{position:{x:'screenCenter',y:'200'}} // 200 可以是任何固定值

设置一个明确的值为我解决了问题并认为值得分享

I'm using jqueryui tabs and the positioning is a reported bug but using

window:{position:{x:'screenCenter',y:'200'}} // 200 can be any fixed value

Setting an explicit value solved the problem for me and thought it was worth sharing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文