我的任务是使用 javascript 和 jquery 生成一个网页,该网页采用用户提交的字符串并生成该字符串:abcde
=>bcdea
我的问题是当我尝试运行程序时没有输出。我检查了错误控制台,它说旋转没有定义。我只是很困惑。
<!doctype html>
<!-- This page demonstrates several string properties and operations -->
<!-- =============================================================== -->
<html>
<head>
<title> String Demo </title>
<script src="..111/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
function rotate(s)
{
result = $('#strBox').value;
"rotate:" + result
var result = "";
for (var i = 0; i< s.length; ++i){
result = s.substring(1) + s.charAt(0);
$('#outputDiv').innerHTML =
}
}
</script>
</script>
</head>
<body>
<h2>String Demo</h2>
<p>
Enter a string: <input type="text" id="strBox" size=20 value="">
</p>
<input type="button" value="Click to Process" onclick="rotate();">
<hr>
<div id="outputDiv"></div>
</body>
</html>