作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 smarty 的新手,我想知道类似...
我在 .tpl 文件中有 javasript 代码
var dispDate = myJsDate.getDate()+'/'+ (myJsDate.getMonth()+1) + '/' + myJsDate.getFullYear();
above code return : 08/12/2012
并在该 .tpl 文件中包含 html 代码
<a href="eventPost.php">Create A New Event</a>
<a href="commitment.php">Create A New Commitment.</a>
<a href="areaPost.php">Create A New Visiting Area.</a>
我的查询是我想在 url 中传递那个 javascript 变量“dispDate”
喜欢代码:
eventPost.php?ed=08/12/2012
commitment.php?ed=08/12/2012
areaPost.php?ed=08/12/2012
最佳答案
尝试使用 jQuery:
$("#eventPost").click(function() {
var dispDate = myJsDate.getDate()+'/'+ (myJsDate.getMonth()+1) + '/' + myJsDate.getFullYear();
$.get("eventPost.php", { date: dispDate} );
});
<a href="#" id="eventPost">Create A New Event</a>
这不是完整的答案,但您可以作为开始。
问候。
关于php - 如何将javascript变量传递给smarty中的url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13775237/
我是一名优秀的程序员,十分优秀!