gpt4 book ai didi

jquery - 将文本之间的空格合并为连字符 jquery

转载 作者:行者123 更新时间:2023-12-01 06:47:37 25 4
gpt4 key购买 nike

我想知道如何将“如何学习python”更改为how-to-learn-python.php

我的html代码是

<input id='url' type='text'/>

我的jquery代码是

    $('#url').change(function() {
$(this).val($(this).val().replace(/\s/g, "-"));
});

它给定的输出像这样“how-to-learn-python”,我如何在句子的最后附加.php

最佳答案

使用+运算符进行简单的字符串连接

$(this).val($(this).val().replace(/\s/g, "-") + ".php");

关于jquery - 将文本之间的空格合并为连字符 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21620958/

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