ThinkPHP ThinkAjax提交问题 ‘Uncaught ReferenceError: ThinkAjax is not defined’

<input type="button" value="保 存" onclick="sendForm('form1','__URL__/update/')" class="small submit">

 原来的代码是这样,这样使用就会报错:

Uncaught ReferenceError: sendForm is not defined

 

然后看了一下是不能直接调用sendForm的,这个方法是ThinkAjax对象下面的,所以正确的代码如下:

<input type="button" value="保 存" onclick="ThinkAjax.sendForm('form1','__URL__/update/')" class="small submit">

 

你可能感兴趣的:(js,thinkphp)