谷歌应用程序脚本的onclick事件无法正常工作

时间:2012-08-11 06:16:39

标签: google-apps-script

在我的代码正常运行

之前几天

"onclick='google.script.run.processForm(this.parentNode)"但突然停止工作而代码没有任何变化。

mycode的:

html文件: -

<form id='addnewForm' action='myurl' method="post"> 
     <input name='name' type="text" >
     <input name='age' type='text'> 

<input type='submit'  value="submit" name="submit" onclick='google.script.run.processForm(this.parentNode)' >

 </form>

code.js文件:

    function processForm(value) {


      var  name= value.name;
      var  age= value.age;

 Logger.log('name is: ' + name);
  Logger.log('age is:' + age);

    }

在processForm函数给出输出之前,但现在它没有给出任何输出它的调用。

1 个答案:

答案 0 :(得分:0)

这是一个已知问题,请明星issue report以跟踪更新。