gpt4 book ai didi

javascript - 在 HTML 中使用 php 和正则表达式匹配定义类名

转载 作者:行者123 更新时间:2023-11-30 10:07:44 26 4
gpt4 key购买 nike

我想创建一个动态 HTML 页面,类名由 php 程序定义

我的代码:

<?php

error_reporting(E_ALL);
ini_set("display_errors", 1);
?>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function hideTd(){
var elements = document.getElementsByClassName("ca");
for(var i = 0, length = elements.length; i < length; i++) {
elements[i].style.display = 'none';
}
}
</script>
</head>
<body onload="hideTd()">
<select name="retailerselect" id="retailerselect" onchange="retailerSelect()" width: 66px;>
<option selected="selected" size="10" >--SELECT--</option>
<option class="ca">hi</option>
<option class="ca">this</option>
<?php $connect = " yes-ad";?>
<option class="<?php echo $connect;?>"> <?php echo $connect;?> </option>

</select>
</body>
</html>

在 HTML 脚本中,我会在“ca”类中隐藏选项标签的值

输入:

$connect:"yes-ad"

输出:

class="ad" value in the option ="yes-ad"

抱歉,如果我的脚本有误,我是 HTML 的新手,或者有其他方法可以做到这一点

编辑:简化脚本

我现在得到的输出

enter image description here

我希望它在其类中显示 yes-ad

最佳答案

php代码错误。不应该有 {} 。只需删除它们。

要更改类名,只需这样做:

<option class="<?php echo $connect;?>">....</option>

关于javascript - 在 HTML 中使用 php 和正则表达式匹配定义类名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28315619/

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