$(document).on("click", ".zibi-upload-btn", function(e) { e.preventDefault(); var target = $(this).data("target"); var preview = $(this).data("preview"); var frame = wp.media({ title: "选择广告图片", button: { text: "使用此图片" }, multiple: false }); frame.on("select", function() { var attachment = frame.state().get("selection").first().toJSON(); $("#" + target).val(attachment.url); $("#" + preview).attr("src", attachment.url).show();//✅ 选中图片show }); frame.open(); });