给文本框加上日历小图标(jquery-ui 中的小图标)

 $("#文本框ID")
    .wrap('<div style="position: relative; height:100%;"></div>')
    .after('<span class="ui-icon ui-icon-calendar" style="position: absolute; right:2px; top:1px;"></span>');

 其中ui-icon ui-icon-calendar 是jquery ui中的样式

效果如下:

你可能感兴趣的:(给文本框加上日历小图标(jquery-ui 中的小图标))