Javascript加载问题或操作顺序问题

时间:2011-09-14 20:56:47

标签: javascript jquery

我有一个生成内容的链接。这一切都有效。我正在尝试将JS与此内容相关联,而这些内容无效:

function add_fields(link, association, content) {
  var new_id = new Date().getTime();
  var regexp = new RegExp("new_" + association, "g")
  console.log(content);
  $(link).parent().after(content.replace(regexp, new_id));

  console.log(new_id);
  console.log("promotion_profile_extrafields_attributes_" + new_id + "_image")
  RD.FileUpload.create({
    fileFieldName: "file",
    inputNodeID: "promotion_profile_extrafields_attributes_" + new_id + "_image",
    progressBarID: "bgUploaderProgressbar",
    swfuploadOptions: $.extend({
      post_params: {
        dir: "chag/assets"
      },
      button_placeholder_id: "bgUploaderButton3"
    }, Settings.swfOptionsforImages)
  });
}

这是生成正确的选择器:promotion_profile_extrafields_attributes_1316033511105_image,这是一个时间戳,使id唯一。我不确定为什么我的JS不工作。

0 个答案:

没有答案