如何在yii中在同一行中给出onblur和onkeypress,这是可能的吗

how to give onblur and onkeypress in same line in yii and is it possible?

本文关键字:onkeypress onblur yii 一行      更新时间:2023-09-26

我创建了一个表单,希望在同一行中使用onblur和onkeypress。

有可能吗?

<?php
    echo $form->textField($model, 'amount', array('name'=>'amount','onblur'=>'return checkallfield()', 'id'=>'amnt'));
?>

在哪里按键?

只需像添加onblur一样添加即可,如:

$form->textField($model,
    'amount',
    array(
        'name'=>'amount',
        'onblur'=>'return checkallfield();',
        'onkeypress'=>'return doKeyPress();',
        'id'=>'amnt'
    )
);

您可以使用与blur:相同的按键事件

<?php echo $form->textField($model,'amount',array('name'=>'amount','onblur'=>'console.log("onblur event triggered")','onkeyup'=>'console.log("onkeyup event triggered")','id'=>'amnt')); ?>

检查控制台,您将能够看到事件。