我需要限制类似于 meta_description 的属性(“灵感”)的文本字段长度。我尝试在 Attributes.php (\app\code\core\Mage\Adminhtml\Block\Catalog\Product\Edit\Tab) 中复制代码块:
if ($form->getElement('meta_description')) {
$form->getElement('meta_description')->setOnkeyup('checkMaxLength(this, 255);');
}
并将“meta_description”替换为“inspiration”,但它不起作用。有人可以帮我吗?