我在使用 cakephp 时遇到问题,实际上,我正在尝试在选择框中使用事件“onChange”,但是当我尝试为我的特定类设置时,我真的不知道为什么它不起作用输入。
这是我的代码:
<form>
<?php
echo $this->Form->input(' ', array('class' => 'styledselect_pages', 'options' => array(10, 20, 40), 'empty' => 'Afficher par', 'onchange' => 'alert();'));
?>
</form>
此代码不起作用,但如果我只删除 'class' => 'styledselect_pages' 并且什么都不设置,一切正常!
我错过了什么吗?
编辑:我的 CSS 中的 styledselect_pages 是:
background: url(../img/table/select_number_rows.gif) left no-repeat;
border: none;
border-left: none;
color: #393939;
cursor: pointer;
display: block;
font-family: Arial;
font-size: 12px;
height: 20px;
line-height: 16px;
margin: 0px 0px 0px 0px;
padding: 4px 0 0 6px;
text-align: left;
width: 130px;