主题: insertimage 里怎样可以插入个参数?
作者: ttjian, 发布日期: 2012-08-27 15:32:35, 浏览数: 2805

 insertimage : function(url, title, width, height, border, align) {
  title = _undef(title, '');
  border = _undef(border, 0);
  var html = '<img src="' + _escape(url) + '" data-ke-src="' + _escape(url) + '" ';
  if (width) {
   html += 'width="' + _escape(width) + '" ';
  }
  if (height) {
   html += 'height="' + _escape(height) + '" ';
  }
  if (title) {
   html += 'title="' + _escape(title) + '" ';
  }
  if (align) {
   html += 'align="' + _escape(align) + '" ';
  }
  html += 'alt="' + _escape(title) + '" ';
  html += '/>';
  return this.inserthtml(html);

 

 

想在图片插入编辑器时加入: onload="DrawImage(this, 500, 500)"

<img alt="" src="/attached/image/201208/20120827152549284928.jpg"  onload="DrawImage(this, 500, 500)" />

请教!!!!

 

 

作者: 小浪子, 发布日期: 2012-08-28 16:38:36
不需要这么做。你就是做个自动等比例缩放。你可以在前台使用:jq来处理。
回复
发表新帖 发表回复