如何在图像点击上设置日历样式

时间:2016-03-10 05:16:23

标签: javascript php jquery

我需要在点击图片时显示日期时间选择器并搜索stackoverflow给出以下答案:

<input type="hidden" id="dp" />

  $("#dp").datepicker({
        buttonImage: '../images/icon_star.gif',
        buttonImageOnly: true,
        changeMonth: true,
        changeYear: true,
        showOn: 'both',
     });

但它提供输出:首先是文本框,然后是图像按钮: enter image description here

我需要输出首先是按钮,然后是文本框

enter image description here

我怎么设计这个?

1 个答案:

答案 0 :(得分:0)

我同意诺布。请在此处查看代码。

https://jsfiddle.net/p5ycaypd/

在css中添加以下内容:

.ui-datepicker-trigger {
    float: left;
}

这对你有用。