我在下面有一个html,我想将锚标记“First”的值和div类“Second”的值附加到url。换句话说,在单击锚标记时,url应该等于your-order.php?key = Text& status = Second下面的内联脚本无论如何都不起作用。我怎样才能做到这一点?
public void move()
{
x += xVel;
y += yVel;
if(y < 10)
{
yVel *= -1;
}//end of if
else if(y > 460)//here make this 440 from 460
{
yVel *= -1;
}//end of if
}//end of move method
答案 0 :(得分:0)
没有尝试过此代码,也没有在之前运行过内联字符串连接,但您可以使用concat来连接字符串。试试这个:
<a href="your-order.php?key=" onclick="return this.href.concat($.trim$(this).text(), ['&status=', $(.second).text()]);>First</a>
<div class="second">Second</div>