我有一个问题,我通过 php 将一个类动态添加到 div,然后检查 id "checkLang" 是否具有空间类,但它不起作用:(
也许有人知道这个问题?我的html:
<div id="checkLang" class ="<?php echo $valoda ?>"><div>
我检查的那个div
if ($('#checkLang').hasClass('RU')){
<?php include("lan/ru.php"); ?>
};
if ($('#checkLang').hasClass('LV')){
<?php include("lan/lv.php"); ?>
};
我不知道为什么,但两个 if 都包含语言 php 文件。但也许原因是因为这个脚本在带有标题的 php 文件中,<?php header('Content-type: text/javascript'); ?>
我在索引页面中附加了像 javascript 文件这样的文件,比如<script type="text/javascript" src="php/FormuValidacija.php" /></script>
我试过了
if($_GET['lang']=="latviesu"){
include("php/lan/lv.php");
}
else($_GET['lang']=="krievu"){
include("php/lan/ru.php");
}
但效果不佳:(
PS对不起,如果这是个愚蠢的问题,我是新手,但愿意学习!:)