我最近开始学习javascrpt,但我对C#有一些经验。我的学校给了我一本名为Complete Concepts and Techniques(第二版)的旧教科书。这本书是由Shelly Cashman和Dorin Quasney写的......我的问题是我无法使用任何方法或功能。以下是我最近的两个问题:
var scrollMsg = "Mortage rates are at their lowest!"
var msgSpace = "--- ---"
var beginPos = 0
function scrollingMsg() {
document.msgForm.scrollingMsg.value =
scrollMsg.substring(beginPos,scrollMsg.length)+msgSpace+scrollMsg.substring(0,begi
nPos)
beginPos = beginPos + 1
If (beginPos > scrollMsg.length) {
beginPos = 0
}
window.setTimeout("scrollingMsg()",200)
}
function doMort() {
document.MortCalc.Amount.value=" "
document.MortCalc.Rate.value=" "
document.MortCalc.Years.value=" "
document.MortCalc.Payment.value" "
document.MortCalc.Amount.focus()
}
scrollingMsg()函数不起作用。它不会在scrollingMsg文本框中放置任何内容。所以没有消息。我的第二个问题是使用doMort()函数。该功能确实清除了任何方框,也没有设置焦点。你能告诉我什么是错的吗?附:这些不是我自己的代码。这些是txt书中的项目代码,但它们不起作用。
答案 0 :(得分:0)
尝试在每个语句后添加分号,并且您有一个拼写错误('If'需要小写)。
答案 1 :(得分:0)
我修复了代码以符合JSLint,使用此站点验证您的javascript http://www.javascriptlint.com/online_lint.php
var scrollMsg = "Mortage rates are at their lowest!";
var msgSpace = "--- ---";
var beginPos = 0;
function scrollingMsg() {
document.msgForm.scrollingMsg.value = scrollMsg.substring(beginPos,scrollMsg.length) + msgSpace + scrollMsg.substring(0,beginPos);
beginPos = beginPos + 1;
if (beginPos > scrollMsg.length) {
beginPos = 0;
}
window.setTimeout("scrollingMsg()",200);
}
function doMort() {
document.MortCalc.Amount.value=" ";
document.MortCalc.Rate.value=" ";
document.MortCalc.Years.value=" ";
document.MortCalc.Payment.value=" ";
document.MortCalc.Amount.focus();
}