我目前正在尝试为我的页面制作壁纸更换器。
此刻,我想在单击 CSS 菜单中的相应 DIV 选项时将壁纸的 URL 放入文本框中。
这是我的 jQuery
$("div.bg8").click( function() {
var BackgroundURL = 'Styles/hongkongskyline.jpg';
var TheTextBox = document.getElementById('<%=BackgroundsTxt.ClientID%>');
TheTextBox.value= BackgroundURL;
alert('This has worked'); });
..和我的HTML...
<ul><li class="#cssmenu"><a>
<div id="bg8" runat="server">
<table style="height: 16px; width:33%;">
<tr>
<td>
<img src='Styles/hongkongskyline.jpg' width="34px" height="32px" /></td> <td>Hong Kong Skyline </td>
</tr>
</table>
</div>
</a></li></ul>
不幸的是,当我单击 DIV 时似乎什么都没有发生。
有人看到我看不到的问题吗?
非常感谢。