我试图在单击图像时提醒某些文本。
javascript代码:
$(document).ready(function() {
$(".delRow").click('function() {
alert("hello!");
});
});
html代码:
<img src="../images/delete.png" alt="delete" class="delRow"></img>
此代码似乎很直接;但是,它没有按预期工作。使用.click时图像的处理方式是否不同?
-Thanks,
富
答案 0 :(得分:3)
$(document).ready(function() {
$(".delRow").click(function() {
alert("hello!");
});
});
答案 1 :(得分:2)
你有额外的'点击。(function(){
应该是
$(document).ready(function() {
$(".delRow").click(function() {
alert("hello!");
});
});
答案 2 :(得分:1)
$(document).ready(function() {
$(".delRow").click(function() {
alert("hello!");
});
});
在第二个'
function
”