我有一个使用JQuery的简单代码。
当我点击给定的文字( foreach (char c in encryptedData)
{
if (c == ' ')
{
Console.Write(" ");
}
else
{
int charPosition = 0;
charPosition = Array.IndexOf(alphabet, c);
if (charPosition == -1)
{//Check for non expected items
Console.Write("*");
}
else
{
charPosition = charPosition - 5;
if (charPosition < 0)
{
charPosition = charPosition + 26;
}
Console.Write(alphabet[charPosition]);
}
}
}
)时,我希望它更改为另一个文字(在这种情况下为grjvtrjv
)
但它不起作用。请帮忙。
sdfds
注意:没有使用php,但文件的扩展名为<html>
<head>
</head>
<body>
<p class="fg">grjvtrjv</p>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
$(".fg").click(function(){
$(".fg").html("sdfds");
}
</script>
</html>
答案 0 :(得分:2)
您的点击功能未正确写入。在最终)
之后,您错过了}
。我也把它放在文件就绪功能中。
<html>
<head>
</head>
<body>
<p class="fg">grjvtrjv</p>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function (){
$(".fg").click(function(){
$(".fg").html("sdfds");
});
});
</script>
</html>
答案 1 :(得分:0)
试试这个
<html>
<body>
<p class="fg">grjvtrjv</p>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
$(document).on("click",".fg",function(){
$(this).html("sdfds");
});
</script>
</html>