使用数组创建非冲突的jQuery函数

时间:2011-07-15 03:43:30

标签: jquery jquery-validate

我有以下jQuery代码,我从其他网站复制,需要修改它以使用我的设置。

如果我复制并粘贴该函数并且只是更改html id元素标识符,那么当前代码(我认为无论如何)将无效。

如何复制此代码块并使其唯一,以便它们不会相互冲突?

jQuery(document).ready(function() {

jQuery('#upload_image_button').click(function() {
 formfield = jQuery('#hccfavicon').attr('name');
 tb_show('', 'media-upload.php?type=image&TB_iframe=true');
 return false;
});

window.send_to_editor = function(html) {
 imgurl = jQuery('img',html).attr('src');
 jQuery('#hccfavicon').val(imgurl);
 tb_remove();
}

});

你看到#hccfavicon。这是我需要使用这个jQuery函数的各种实例交换的项目。

0 个答案:

没有答案