我这里有问题,请帮助解决这个问题。
假设我有 2 页。第一页 index.php 和第二页 data.php
在 index.php 我有 div 并且在这个 div 中没有任何文本。这是我的 index.php 脚本
<div id="confirm"></div>
<img border="0" src="choose.png" width="90" height="90" id="choose">
第二页我在 data.php 有图像,当我在 data.php 页面单击图像时,类值将显示在 index.php 页面内部。
数据.php
<img border="0" src="choose.png" width="90" height="90" id="choose" class="ThisItem">
这里是我的 js 脚本。
$(document).ready(function() {
$('#test').hide();
$("#cChooseImg").click(function() {
$("#test").html(' Change Item.');
alert('Click OK');
});
});
关键是,在 data.php 中我有一个图像,当单击时,我希望图像类将显示在 index.php 的 div 内。我应该如何更改 js 脚本?因为这一段 $("#test").html('Change Item.'); 我不知道我应该写什么。
也许你能帮助我?
问候和许多..非常感谢