语境
我正在尝试为这个WordPress question建立一个答案。
我正在媒体上传厚框窗口中生成动态复选框。它们应该用于填充用户可以复制/粘贴其值的文本字段。
文本字段的最终输出是此短代码中的include属性[gallery include="23,39,45"]
。
主要是,我需要帮助来构建最后一部分:Checkbox -> Populate/Unpopulate Text Field...
布局
动态复选框
文本字段的插入点(在
<tr>
控制台中显示的最后一个之后)要填充的文本字段,应为include=" + CheckBoxID1 comma CheckBoxID2 comma etc + "
实际代码
<?php
add_action( 'admin_head-media-upload-popup', 'wpse_53803_script_enqueuer' );
function wpse_53803_script_enqueuer() {
if( $_GET['tab'] == 'gallery' )
{
?>
<style>#media-upload th.order-head {width: 5%} #media-upload th.actions-head {width: 10%}</style>
<script type="text/javascript">
jQuery(document).ready( function($) {
/* Iterate through the media items */
$('.filename.new').each(function(i,e){
var id = $(this).next('.slidetoggle').find('thead').attr('id').replace(/media-head-/, '');
var filename = $('<label>Add to gallery list <input type="checkbox" name="gal-item-'+id+'" id="gal-item-'+id+'" value="" /></label>').insertBefore($(this));
filename.css('float','right').css('margin-right','40px');
filename.id = id; // PROBLEM: not sure how to do this in Javascript
// BUG: the alert is being fired twice
filename.click(function() {
alert('Handler for img id = '+filename.id+' called.');
});
});
});
</script><?php
}
}
缺少的部分
- 创建要填充的动态文本字段。
- 解决评论中注意到的问题和错误。
- 在
filename.click(function()
文本字段中构建所需的字符串。