jquery jpicker被浏览器顶部切断了

时间:2012-01-21 19:05:19

标签: jquery jquery-plugins

我正在使用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>

enter image description here

2 个答案:

答案 0 :(得分:2)

我不确定,但你可以试试这个

$('#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
    }
  }
});

答案 1 :(得分:1)

我正在使用jqueryui标签,定位是一个报告的错误,但使用

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

设置一个显式值为我解决了问题并认为值得分享