??yy 2018-12-26 15:20 采纳率: 0%
浏览 82

如何在Ajax中使用复选框?

there are checkboxes in record, it is necessary to hook Ajax of their value (noted) both to take through get_post_meta and to obtain data from this field and to remove through a comma in other field(id=parsing_night_key)?

function lft_checkbox_meta() {
    add_meta_box(
        'lft-checkbox',
        __( 'Отели', 'undefined' ),
        'myplugin_inner_custom_box',
        'parsing',
        'normal',
        'default'
    );
}

add_action( 'add_meta_boxes', 'lft_checkbox_meta' );

function myplugin_inner_custom_box( $post ) {

    $checkfield = maybe_unserialize( get_post_meta($post->ID, "checkfield", true) );

    wp_nonce_field( 'save_quote_meta', 'custom_nonce' ); 

    $args = array(
        'numberposts' => 0,
        'post_type'   => 'hotel'
    );
    $hotels = get_posts($args);

    foreach ( $hotels as $page ) { ?>
        <input id="need_check" type="checkbox" name="checkfield[]" value="<?php echo $page->ID; ?>" <?php if ( in_array($page->ID, (array) $checkfield) ) { ?> checked <?php } ?>/> <label for="page_<?php echo $page->ID; ?>"><?php echo $page->post_title; ?></label> <br>
<?php 
    } 
}
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
    • ¥20 西门子S7-Graph,S7-300,梯形图
    • ¥50 用易语言http 访问不了网页
    • ¥50 safari浏览器fetch提交数据后数据丢失问题
    • ¥15 matlab不知道怎么改,求解答!!
    • ¥15 永磁直线电机的电流环pi调不出来
    • ¥15 用stata实现聚类的代码
    • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
    • ¥20 docker里部署springboot项目,访问不到扬声器
    • ¥15 netty整合springboot之后自动重连失效