gpt4 book ai didi

php - 可以根据复选按钮实时向 html 代码添加文本吗?

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

事情是这样的,我用 php 打印了这个:

echo '<a href="'.$npeurl.'"><img src="css/img/confaceEN.png" alt="Access with Facebook"></a>';

$npeurl 变量是在页面加载时生成的,使用 facebook API 是这样的:

<a href="https://www.facebook.com/dialog/oauth?client_id=111222333444&amp;redirect_uri=http%3A%2F%2Finfoabout.me%2FISS%2Ftest.php%3Fclient%3Dzara&amp;state=607a11c13ddb4cc4e5f6af8458cc0f65&amp;scope=email%2C+user_birthday&amp;display=page"><img src="css/img/confaceEN.png" alt="Access with Facebook"></a>

问题是在页面中有一个默认情况下未选中的检查按钮,但是如果用户检查它,我需要向 redirect_uri 属性添加一个参数,例如:&noemail=1

你怎么看?这可能使用 javascript 吗?

最佳答案

$('.checkbox').toggle(function() {
var href = $('.link').attr('href');
$('.link').attr('href', href + '&noemail=1');
}, function() {
var href = $('.link').attr('href').replace('&noemail=1', '');
$('.link').attr('href', href);
});

希望这对您有所帮助。

关于php - 可以根据复选按钮实时向 html 代码添加文本吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13186138/

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