什么软件可以修改网页里变量在内存中的值?

来源:百度知道 编辑:UC知道 时间:2024/09/23 05:06:02
某学习网站要求学员必须在线120分钟才能进行下一项操作。我想修改,比如改成初始值为119分钟。请问应该怎么操作?该网页源文件如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>课程计时</title>
<script LANGUAGE="javascript">
function SaveTime(){
var flag = parent.location.search;
var StudyTime = document.form1.timespent.value;
window.showModalDialog('/save_time.php'+flag+'&time='+StudyTime, '', 'dialogWidth:24em; Height:4em; status:0');
location.reload()
return false;
}
</script>
</head>

<body onLoad="window.setTimeout('stopwatch()',1);">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<form name="form1">
<td width="40%" bgcolor="#336699&qu

你的想法就错了。不是修改内存里的值,而是怎么样去修改网页。
你的代码有错误。在这window.setTimeout("stopwatch()",1000);

}
后添上</script>