主题: 如何在一个页面里加入两个上传图片
作者: 小马, 发布日期: 2012-06-22 17:28:11, 浏览数: 3708

那位大神知道怎么弄

 

 <tr>
      <td align="right" class="forumRow">产品小图:</td>
      <td class="forumRowHighlight">
       <input type="text" id="url" value="<%=SmallPic%>" style="width: 280;" name="SmallPic"/> <input type="button" id="image" value="选择图片" />
     
        <font color="red">*</font></td>
    </tr>
    <tr>
      <td align="right" class="forumRow">产品大图:</td>
      <td class="forumRowHighlight">
       <input type="text" id="url" value="<%=BigPic%>" style="width: 280;" name="BigPic"/> <input type="button" id="image" value="选择图片" />

        <font color="red">*</font></td>
    </tr>

 

作者: 无人知道的小草, 发布日期: 2012-12-05 13:52:11

<script>
   KindEditor.ready(function(K) {
    var editor = K.editor({
        uploadJson : '../keditor/asp/upload_json.asp',
        fileManagerJson : '../keditor/asp/file_manager_json.asp',
     allowFileManager : true
    });
    K('#image1').click(function() {
     editor.loadPlugin('image', function() {
      editor.plugin.imageDialog({
       imageUrl : K('#url1').val(),
       clickFn : function(url, title, width, height, border, align) {
        K('#url1').val(url);
        editor.hideDialog();
       }
      });
     });
    });
    K('#image2').click(function() {
     editor.loadPlugin('image', function() {
      editor.plugin.imageDialog({
       imageUrl : K('#url2').val(),
       clickFn : function(url, title, width, height, border, align) {
        K('#url2').val(url);
        editor.hideDialog();
       }
      });
     });
    });
   });
  </script>

<input type="text" id="url1" value="" size="80" />
     <input type="button" id="image1" value="选择图片" />

<br>

<input type="text" id="url2" value="" size="80" />
     <input type="button" id="image2" value="选择图片" />

 

回复
发表新帖 发表回复