作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从 javascript 调用 Controller 。我已经成功调用 Controller ,但是如果 Controller 没有参数。就我而言, Controller 有一个参数。我如何从 javascript 调用 Controller
Javascript代码:
<script language="javascript" type="text/javascript">
var thisTable = setFilterGrid("myTable");
document.getElementById("oneday").onclick = function() {
var date = new Date();
var day = date.getDate().toString();
var month = date.getMonth().toString();
var year = date.getFullYear().toString();
var oneday = day.concat('/', month, '/', year);
window.location.href = "<?php echo site_url('sellbyitem/retrieveInfo('/*howcanipassonedayhere*/');?>";
};
Controller :
public function retrieveInfo($date) {
echo $date;
}
我已经在寻找相同的案例,但它对我不起作用
最佳答案
您可以在末尾传递 javascript 参数,如下所示:
window.location.href = "<?php echo site_url('sellbyitem/retrieveInfo/');?>" + oneday ;
关于javascript - 如何从 javascript CodeIgniter 调用 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45930815/
我是一名优秀的程序员,十分优秀!