Cakephp javascript onclick 提交视图功能
我正在尝试在 Cakephp 网站的视图文件上使用 Javascript 的 onclick 提交功能,但单击它时似乎没有执行任何操作...
有什么建议吗?
<?php echo $form->submit(' Preview ', array('label'=>false,'name'=>'submit','id'=>'print_log')); ?>
<a id="print_log" href="#" onclick="this.form.submit()" name="submit">
<?php echo $html->image("btn_preview.jpg",array("alt" => "Preview")); ?>
</a>
I'm trying to use Javascript's onclick submit function on the view file of Cakephp site and it doesn't seem to do anything when it's clicked...
Any suggestions?
<?php echo $form->submit(' Preview ', array('label'=>false,'name'=>'submit','id'=>'print_log')); ?>
<a id="print_log" href="#" onclick="this.form.submit()" name="submit">
<?php echo $html->image("btn_preview.jpg",array("alt" => "Preview")); ?>
</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是表单元素(而
或
<a>
is not a form element (while<input>
or<button>
are), thereforethis.form
is undefined for it.It has nothing to do with CakePHP.