我试图获取一个值并将其传递给一个隐藏的输入,以便通过$\\u POST发送表单数据。我有一个下拉按钮和以下代码来更新值:
jQuery(document).ready(function($){
var espSeleccionada = $(\'button[data-id="select-especialidad"]\');
espSeleccionada.on("click", function() {
// if changed to, for example, the last option, then
// $(this).find(\'option:selected\').text() == D
// $(this).val() == 4
// get whatever value you want into a variable
var x = $(this).text();
// and update the hidden input\'s value
$(\'#boton-prueba\').text(x);
});
});
代码应该将值从一个按钮传递到另一个按钮,如中所示
here 但是,当我从WordPress加载代码时,什么都没有发生。相反,当我在控制台上编写它时,它工作得很好。控制台中没有JS错误。
请注意,我正在使用。text()来测试代码是否工作,但它会。val(),然后再上线。
这是按钮HTML:
<button type="button" class="btn dropdown-toggle btn-default" data-toggle="dropdown" data-id="select-especialidad" title="Hacienda" aria-expanded="false"><span class="filter-option pull-left">Hacienda</span></button>
Here 就是一个例子。
EDIT TO CLARIFY HOW I AM ADDING THE CODE TO IN WORDPRESS:
我通过函数添加脚本。php。这是我的代码:
function loading_my_scripts() {
wp_enqueue_style( \'buscopreparador-style\', get_stylesheet_uri() );
wp_deregister_style( \'buscopreparador-style\' );
if ( !is_admin() ) {
wp_enqueue_style( \'styles\', get_template_directory_uri() . \'/assets/css/styles.css\' );
wp_enqueue_style( \'vertical-tabs\', get_template_directory_uri() . \'/assets/css/bootstrap.vertical-tabs.min.css\' );
wp_enqueue_style(\'bootstrap-select-css\', \'https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/css/bootstrap-select.min.css\' );
wp_enqueue_style( \'open-sans\', \'https://fonts.googleapis.com/css?family=Open+Sans:400,600,600italic,400italic,700,700italic\');
wp_deregister_script( \'jquery\' );
wp_register_script(\'jquery\', \'https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js\', false, false, TRUE );
wp_register_script(\'bootstrap\', \'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js\', false, false, TRUE );
wp_register_script(\'bootstrap-tabcollapse\', get_template_directory_uri() . \'/assets/js/bootstrap-tabcollapse.js\', false, false, TRUE );
wp_register_script(\'bootstrap-select\', \'https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/js/bootstrap-select.min.js\', false, false, TRUE );
wp_register_script(\'theme-js\', get_template_directory_uri() . \'/assets/js/theme.js\', array(\'jquery\'), false, TRUE );
wp_enqueue_script( \'jquery\' );
wp_enqueue_script( \'bootstrap\' );
wp_enqueue_script( \'bootstrap-tabcollapse\' );
wp_enqueue_script( \'bootstrap-select\' );
wp_enqueue_script( \'theme-js\' );
}
if ( is_singular() && comments_open() && get_option( \'thread_comments\' ) ) {
wp_enqueue_script( \'comment-reply\' );
}
}
add_action( \'wp_enqueue_scripts\', \'loading_my_scripts\' );
代码位于
theme.js 如下所示的文件:
( function( $ ) {
var num_cols = 3,
container = $(\'#menu-preparadores-de-oposiciones-en\'),
listItem = \'li\',
listClass = \'sub-list\';
container.each(function() {
var items_per_col = new Array(),
items = $(this).find(listItem),
min_items_per_col = Math.floor(items.length / num_cols),
difference = items.length - (min_items_per_col * num_cols);
for (var i = 0; i < num_cols; i++) {
if (i < difference) {
items_per_col[i] = min_items_per_col + 1;
} else {
items_per_col[i] = min_items_per_col;
}
}
for (var i = 0; i < num_cols; i++) {
$(this).append($(\'<ul ></ul>\').addClass(listClass));
for (var j = 0; j < items_per_col[i]; j++) {
var pointer = 0;
for (var k = 0; k < i; k++) {
pointer += items_per_col[k];
}
$(this).find(\'.\' + listClass).last().append(items[j + pointer]);
}
}
});
if ($("body").hasClass("page-id-64")) {
$(\'.tab-content\').addClass(\'col-sm-9\');
$(\'#custom-tabs-0\').tabCollapse();
}
} ) ( jQuery );
jQuery(document).ready(function($){
var espSeleccionada = $(\'button[data-id="select-especialidad"]\');
espSeleccionada.on("click", function() {
// if changed to, for example, the last option, then
// $(this).find(\'option:selected\').text() == D
// $(this).val() == 4
// get whatever value you want into a variable
var x = $(this).html();
// and update the hidden input\'s value
$(\'#boton-prueba\').html(x);
});
});
( function() {
var is_webkit = navigator.userAgent.toLowerCase().indexOf( \'webkit\' ) > -1,
is_opera = navigator.userAgent.toLowerCase().indexOf( \'opera\' ) > -1,
is_ie = navigator.userAgent.toLowerCase().indexOf( \'msie\' ) > -1;
if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) {
window.addEventListener( \'hashchange\', function() {
var id = location.hash.substring( 1 ),
element;
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
return;
}
element = document.getElementById( id );
if ( element ) {
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
element.tabIndex = -1;
}
element.focus();
}
}, false );
}
})();