删除jquery datepicker alt中的3个点

前端之家收集整理的这篇文章主要介绍了删除jquery datepicker alt中的3个点前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我通过YII框架使用 jquery datepicker并使用图像.
这个图像有标题和alt,我无法删除它们

这是我在YII中显示图像的代码

$this->widget('zii.widgets.jui.CJuiDatePicker',array(
'name' => 'sso_register[dob]',//'model' => $model,'attribute' => 'dob','value' => $dbText,'options' => array(
'changeMonth' => true,'changeYear' => true,'dateFormat' => 'dd/mm/yy','yearRange' => "-100:+0",'maxDate' => '31/12/2007',//day can choose >= tomorrow
'buttonImage' => Yii::app()->baseUrl . '/images/date_picker.png','buttonImageOnly' => true,'showButtonPanel' => false,'showOn' => 'button','altField' => '',),'htmlOptions' => array(
'class' => 'inputfield-middleside-date','readonly' => 'true','style' => 'position: relative; z-index: 100;','tabindex' => '7','alt'=>'','title'=>'',)
));

在所有浏览器中删除图像alt属性中的这3个点的任何方法
谢谢

解决方法

原文链接:https://www.f2er.com/jquery/177485.html

猜你在找的jQuery相关文章