芝麻web文件管理V1.00
编辑当前文件:/home/mybf1/public_html/sabun.bf1.my/wp-content/plugins/all-in-one-seo-pack/js/count-chars.js
/** * Script for Counting Characters * * @summary Binds input elements and counts characters for Title and Description on Post Edit, Post New, * & AIOSEOP General Settings screens. * * @author Michael Torbert. * @author Semper Fi Web Design. * @copyright https://semperplugins.com * @version 2.9.2 */ var aiosp_title_extra = parseInt( aioseop_count_chars.aiosp_title_extra, 10 ); // jshint ignore:line jQuery( document ).ready( function() { aioseopInitCounting(); }); /** * Preview Snippet * * @since ? * @since 2.9.2 Move from PHP value to JS file */ jQuery(document).ready( function() { jQuery("#aiosp_title_wrapper").bind("input", function() { jQuery("#aiosp_snippet_title").text(jQuery("#aiosp_title_wrapper input").val().replace(/<(?:.|\n)*?>/gm, "")); }); jQuery("#aiosp_description_wrapper").bind("input", function() { jQuery("#aioseop_snippet_description").text(jQuery("#aiosp_description_wrapper textarea").val().replace(/<(?:.|\n)*?>/gm, "")); }); }); /** * AIOSEOP Init Counting * * @since ? */ function aioseopInitCounting(){ /* count them characters */ jQuery( '.aioseop_count_chars' ).on('keyup keydown', function(){ aioseopCountChars( jQuery(this).eq(0), jQuery(this).parent().find('[name="' + jQuery(this).attr('data-length-field') + '"]').eq(0)); }); jQuery( '.aioseop_count_chars' ).each(function(){ aioseopCountChars( jQuery(this).eq(0), jQuery(this).parent().find('[name="' + jQuery(this).attr('data-length-field') + '"]').eq(0)); }); } /** * @summary Counts characters. * * @since 1.0.0 * @since 2.9.1 Fix JS conflict with LearnDash and function name. * * @param Object $field. * @param Object $cntfield. * @return Mixed. */ function aioseopCountChars( field, cntfield ) { var extra = 0; var field_size; if ( ( field.attr('name') === 'aiosp_title' ) && ( typeof aiosp_title_extra !== 'undefined' ) ) { extra = aiosp_title_extra; } cntfield.val( field.val().length + extra ); if ( typeof field.attr('size') !== 'undefined' ) { field_size = field.attr('size'); } else { field_size = field.attr('rows') * field.attr('cols'); } field_size = parseInt(field_size, 10); if ( field_size < 10 ) { return; } if ( cntfield.val() > field_size ) { cntfield.removeClass().addClass('aioseop_count_ugly'); } else if ( ( 'aiosp_title' === field.attr('name' ) ) || ( 'aiosp_home_title' === field.attr('name') ) ) { if ( cntfield.val() > ( field_size - 6 ) ) { cntfield.removeClass().addClass('aioseop_count_bad'); } else { cntfield.removeClass().addClass('aioseop_count_good'); } } else { if ( cntfield.val() > ( field_size - 10 ) ) { cntfield.removeClass().addClass('aioseop_count_bad'); } else { cntfield.removeClass().addClass('aioseop_count_good'); } } }