jquery jpicker 被浏览器顶部切断
我正在使用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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定,但你可以尝试一下
I'm not sure but you may try this
我正在使用 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