jQuery脚本无法在点击时打开iframe

时间:2012-09-03 19:00:12

标签: jquery wordpress

我正在研究一个在WordPress小部件中使用的jQuery脚本。当用户点击“上传”按钮时,iframe应该会弹出一个图片上传器。现在,该按钮不起作用。 iframe无法打开。这是我的剧本:

jQuery(document).ready(function() {

jQuery('#upload_image_button').click(function() {
 formfield = jQuery('#upload_image').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('#upload_image').val(imgurl);
 tb_remove();
}

});

这是输入字段和按钮:

<input id="upload_image" class="widefat" type="text" size="36" name="upload_image" value="<?php echo esc_url( $image ); ?>" />
<input id="upload_image_button" type="button" value="Upload Image" /> 

0 个答案:

没有答案