这是一个创建于 4301 天前的主题,其中的信息可能已经有所发展或是发生改变。
通过chrome的developer tool监控被告知说:
Uncaught SyntaxError: Unexpected token new find:7
Uncaught SyntaxError: Unexpected token )
下面的代码都是正确的,难道是Python bottle的tpl模板文件无法陷入javascript吗?
js部分
<script type="text/javascript">
function new()
{
document._form.action="/new";
document._form.submit();
}
function update()
{
document._form.action="/update";
document._form.submit();
}
</script>
html部分
<form name="_form" method="POST" action="">
<input type="button" name="create_record" id="create_record" value="Create" onclick="new();" />
<input type="button" name="update_record" id="update_record" value="Update" onclick="update();" />
</form>
4 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
takwai 2013-02-04 21:40:52 +08:00 1
function new() 这个是关键字,改改函数名称。
|
|
|
3
utom 2013-02-04 21:48:18 +08:00
|
|
|
4
DaniloSam 2013-02-05 13:40:59 +08:00
new.........
|