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

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

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

可以吗?

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

哪里给onkeypress?

就像添加 onblur 一样添加它,如:

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

您可以使用与模糊相同的方式使用按键事件:

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

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