HTML - 导航到页面,然后在该页面上调用函数

时间:2015-08-12 12:07:31

标签: javascript html navigation href

在菜单栏中,我想导航到一个页面(draft.php)并在该页面上调用函数Draft_ORI()。

<a onclick="location.href='http://example.com/draft.php'; Draft_ORI()">

这有点棘手,因为Draft_ORI()仅存在于目标网页的底部。

1 个答案:

答案 0 :(得分:0)

您的链接应如下所示

var matchQueryString = function(req, res, next) {
  return next(req.query.aaa ? null : 'route');
};

app.get("/test", matchQueryString, function (req, res) {
  res.send("query string aaa found");
});

app.get("/test", middleware, function (req, res) {
  res.send("no query string");
});

在draft.php文件中

<a href="draft.php?a=Draft_ORI"/>

如果您通过<?php $function = $_GET["a"]; $function(); ?> ,则会调用函数?a="something"

这有帮助吗?