gpt4 book ai didi

Javascript 清理 html 代码并仅使用字母数字作为返回

转载 作者:行者123 更新时间:2023-12-02 16:40:23 25 4
gpt4 key购买 nike

我需要一点帮助,弄清楚我的 javascript 输出格式

 <!doctype html>
<html><head>
<meta charset="utf-8">
<title>cleaner</title>

<script language="javascript" type="text/javascript">
function show (text){
var userInput = document.getElementById('textbox').value;
userInput = userInput.replace(/\W/g, '');
userInput = userInput.replace(/ /gi,", ");
document.getElementById('text').innerHTML = userInput;
}
</script>

</head>
<body>
<input type='textbox' name='textbox' id='textbox' value="Title Here"/>
<input type=button name=button value="OK" onClick="show()"/>
<div id="text"></div></body></html>

我的输入

 & ^A % - _ ^ % clean* this$ keyword-

我的结果是

 A_cleanthiskeyword

我想要这样的结果

 a, clean, this, keyword

我应该在替换代码中添加什么?谢谢

最佳答案

请检查此代码,这对您有用

         <!doctype html>
<html><head>
<meta charset="utf-8">
<title>cleaner</title>

<script language="javascript" type="text/javascript">
function show ()
{
var userInput = document.getElementById('textbox').value;
var num = userInput.indexOf('A');
userInput = userInput.match(/[a-z]+/gi).join(", ").toLowerCase().replace(/ /g, '');
document.getElementById('text').innerHTML = userInput.substring(num-1);

}
}
</script>

</head>
<body>
<input type='textbox' name='textbox' id='textbox' value="Title Here"/>
<input type=button name=button value="OK" onClick="show()"/>
<div id="text"></div>
</body></html>

这是您的代码的 JSFiddle 链接 jsfiddle

关于Javascript 清理 html 代码并仅使用字母数字作为返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27566009/

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