kohana 如何将 javascript 捆绑到视图中
我有一个带有计数器和视图的 JavaScript。 我希望每当有人点击“购买产品”按钮时 JavaScript 计数器就会启动。
我的问题是:如何从 kohana 控制器控制 javascript,以及如何将 javascript 捆绑到视图中?
谢谢!
I have a javascript with a counter, and a view.
I want the javascript counter to start whenever some one hits the buy product button.
my problem is: how can i control the javascript from the kohana controller, and how can i bundle the javascript into a view?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 JS 捆绑到视图中,就像捆绑到典型的 .php 页面中一样。
如果页面导致回发,只需像往常一样在页面加载时启动 JS 计时器即可。
如果页面使用AJAX,请将JS放入内容视图中。然后让控制器发送一条消息,触发 JS 计时器倒计时。
否则我不太确定你在问什么。
You can bundle the JS into the view just like into a typical .php page.
If page causes a post-back just start the JS timer on page load as usual.
If page uses AJAX, place JS into the content view. Then have a controller send a message that triggers the JS timer to count down.
Otherwise I'm not exactly sure what you're asking.