gpt4 book ai didi

Javascript 选择文本更改器有故障

转载 作者:行者123 更新时间:2023-11-28 07:17:32 25 4
gpt4 key购买 nike

我正在为电子商务网站创建一个雕刻工具,我似乎不明白为什么文本更改器出现故障。它似乎有效,但后来似乎被挂断了。不确定它是什么。

这是我的 JavaScript 代码:

        /**Load Text**/
jQuery(function() {
$source=jQuery(".source-text");
$output=jQuery(".output-text-div");
$source.keyup(function() {
$output.text($source.val());
});
});

//Text Loader FOnt Change
var $textpreview = jQuery(".output-text-div");

jQuery('.font-selection').change(function() {
var val = jQuery(this).val();

if (val == 'Arial_0')
$textpreview.addClass('arial');
else if(val == 'Mango Smoothie_1')
$textpreview.addClass('mango');
else if(val == 'Bombshell_2')
$textpreview.addClass('bombshell');
else if(val == 'Monogram_3')
$textpreview.addClass('monogram');
else if(val == 'Cursive_4')
$textpreview.addClass('cursive');
else if(val == 'Noteworthy_5')
$textpreview.addClass('noteworthy');
else if(val == 'Sign Painter_6')
$textpreview.addClass('signpainter');
else if(val == 'Typewriter_7')
$textpreview.addClass('typewriter');
else
$textpreview.removeClass('no-font');
});

这里还有一个我正在使用它的示例产品:http://dts.wahhadesign.com/product/custom-handwriting-bar-necklace-with-the-writing-or-art-of-your-little-one-or-loved-one/

任何帮助将不胜感激。谢谢。

最佳答案

确保在 if/else 之前删除不再需要的字体类。

关于Javascript 选择文本更改器有故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30685294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com