问题:-编写一个javascript函数来检查一个单词或一个句子是否是回文,而不考虑大小写和空格。将 HTML 文件命名为 palin.html。
单击按钮名称为“palinbtn”时发出适当的警报。还提供一个名为“palin”的文本框,它接受单词/句子。
重要的提示 :
- 从给定的输入中删除所有空格并检查相同输入忽略大小写的回文。
- 通过 alert() 显示适当的消息后,页面不应被重定向。
- 不要使用“let”或“const”关键字。相反,请使用“var”。
- 使用 getElementById() 或 getElementsByName() 从 HTML 组件中获取值。
- 确保所有标签和属性都是小写的
代码:-
<!DOCTYPE html>
<html>
<body>
//input from user using form
<form onsubmit="return display();">
Enter word/sentence to check for palindrome:<input
type="text"
name="palin"
id="palin"
/><br />
<input type="submit" name="palinbtn" value="Check Palindrome" />
</form>
<script>
function display() {
//getting the value from textbox
var str = document.getElementById("palin").value;
//removing special char. and converting to lowercase
var str = str.replace(/\s/g, "").toLowerCase();
//removing whitespaces
var input = str.split();
//joining the reversed string
var output = input.reverse().join("");
if (str == output) {
alert("The entry is a Palindrome.");
return false;
} else {
alert("The entry is not a palindrome");
return false;
}
}
</script>
</body>
</html>