gpt4 book ai didi

php - 如何将javascript变量传递给smarty中的url

转载 作者:行者123 更新时间:2023-11-30 05:52:38 24 4
gpt4 key购买 nike

我是 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com