html div onclick event

前端 未结 9 1090
渐次进展
渐次进展 2021-02-05 13:23

I have one html div on my jsp page, on that i have put one anchor tag, please find code below for that,

9条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-05 14:14

    when click on div alert key

       $(document).delegate(".searchbtn", "click", function() {
            var key=$.trim($('#txtkey').val());
            alert(key);
            });
    

提交回复
热议问题