当我点击更改事件时,jquery警报不起作用。我在default.ctp中编写document.ready函数。
<script type="text/javascript">
$("#office_type_id").onchange(function() {
alert("Thanks for clicking.");
});
</script>
<?php
echo $this->Form->create('Office');
echo $this->Form->input('name');
echo $this->Form->input('district');
echo $this->Form->input('address');
echo $this->Form->input('office_type', array('type' => 'select', 'id' =>'office_type_id','options' => $settings1,'empty' => false));
echo $this->Form->end('Save');
?>
答案 0 :(得分:0)
$("#office_type_id").on('change',function() {
alert("Thanks for clicking.");
});
jquery onchange函数更改。没有onchange功能。