我是聪明的新人,我想知道类似......
我在.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
答案 0 :(得分:1)
尝试使用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>
这不是完整的答案,但你可以开始服务。
问候。
答案 1 :(得分:0)
没有jquery的第二个选项是:根本不使用href属性,而是onclick。
然后你会有例如:
<a href="areapost.php"
onclick="location.href='areapost.php?ed=' + dispDate; return false;">
....
</a>