我想在我的 Magento 商店管理员的产品详细信息页面中的每个输入和文本区域中添加一个字符数。
我习惯了 jQuery,但如果可能的话,我宁愿为此使用默认的 Prototype 库。我在某处找到了这段代码,它专门针对简短的描述和描述字段,使用它们的 ID 来定位它们:
Event.observe(window, 'load', function() {
Element.insert( $('short_description').up().next().down('span'), {
'after': "<div id='short_description_counter'>Char count: <span id='short_description_counter_num'>"+$('short_description').getValue().length+"</span></div>"
});
Element.insert( $('description').up().next().down('span'), {
'after': "<div id='description_counter'>Char count: <span id='description_counter_num'>"+$('description').getValue().length+"</span></div>"
});
Event.observe('short_description', 'keyup', function(event) { $("short_description_counter_num").update(this.getValue().length); });
Event.observe('description', 'keyup', function(event) { $("description_counter_num").update(this.getValue().length); });
});
有原型经验的人可以告诉我如何编辑它,以便它在每个输入和文本区域上运行,而不是指定 ID?我假设有一些 each(function) 可以使用。
更新:这是在 textarea 上工作的当前代码,由它的 ID 指定 - http://jsbin.com/isisur/2/edit