gpt4 book ai didi

javascript - 将类添加到函数 goForit()

转载 作者:行者123 更新时间:2023-11-30 12:55:18 25 4
gpt4 key购买 nike

我有以下代码:

function goForit() {
var passwd;
passwd = document.forms['giftForm'].pass.value;
if(passwd=="yes"){
window.open ('eat.html','_self',false)
}
else{
alert('Password wrong');
}
}

<form id="giftForm">
<input type="text" id="pass" placeholder="" style="font-size:150%;"/>
<br />
<input type="button" onClick="goForit()" value="Submit" style="font-size:100%; margin-top:15px;" />
</form>

如果有人输入“yes”作为密码并点击提交按钮。用户将被重定向到 eat.html 页面。

我想通过重定向传递 .carrot 类,以便显示正确的图像。如何将 .carrot 类添加到以下代码?

最佳答案

看这里:

How to redirect on another page and pass parameter in url from table?

HTML:

<input type="button" name="theButton" value="Detail" class="btn" data-username="{{result['username']}}" />

然后检查重定向的 url 的位置:

Javascript:

$(document).on('click', '.btn', (function() {

var name = $(this).data('username');

if (name != undefined || name != null) {
window.location = '/player_detail?username=' + name;
}
});​

另外,另一个 StackOverflow 问题:

Javascript redirect and Pass Argument to redirected Page

关于javascript - 将类添加到函数 goForit(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19371034/

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