如何将参数传递给JavaScript中的函数重定向
这是我的代码:
class Test
{
**public:**
Test(const Test& obj )
{
size = obj.size;
a = new int[size];
}
~Test()
{....}
void display()
{
cout<<"Constructor is valid"<<endl;
}
**private:**
}
提前谢谢。
答案 0 :(得分:1)
可以使用getElementById
和addEventListener
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<button id="foo">Click</button>
<script type="text/javascript">
document.getElementById("foo").addEventListener("click", function(){
window.location.replace("http://stackoverflow.com/q/36933820/5526354")
})
</script>
</body>
</html>
onclick
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<button id="foo" onclick="action()">Click</button>
<script type="text/javascript">
function action(){
window.location.replace("http://stackoverflow.com/q/36933820/5526354")
}
</script>
</body>
</html>
答案 1 :(得分:0)
不推荐使用 onclick 。
只使用JavaScript(没有jQuery / Angular等),您可以在点击事件中使用 addEventListener 。
例如:
travel(tree->right);
在这个函数中,你可以从这个按钮元素和其他你想要的东西中获取value / txt。