最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - input type image click event in jquery - Stack Overflow

programmeradmin2浏览0评论

I am trying to navigate to another page using jquery

Markup :

<input type="image" name="ImageButton1" id="btnCancel" src="../images/btn_cancel.gif" />

JS

 $('input[type="image"][id^="btnCancel"]').live('click', function () {
        window.location.replace('default.aspx');
 });

Page just refreshes, it does not navigate to desired page. when i change type=button it works.

How to achieve the same by keeping type as image only ?

I am trying to navigate to another page using jquery

Markup :

<input type="image" name="ImageButton1" id="btnCancel" src="../images/btn_cancel.gif" />

JS

 $('input[type="image"][id^="btnCancel"]').live('click', function () {
        window.location.replace('default.aspx');
 });

Page just refreshes, it does not navigate to desired page. when i change type=button it works.

How to achieve the same by keeping type as image only ?

Share Improve this question asked Jun 26, 2014 at 9:12 ShaggyShaggy 5,84030 gold badges106 silver badges170 bronze badges 5
  • 2 live is deprecated, use on instead of it – Anoop Joshi P Commented Jun 26, 2014 at 9:13
  • Why 2 attribute selectors for a single element? you can only do it with $("#btnCancel"). – Dhaval Marthak Commented Jun 26, 2014 at 9:13
  • input type="image" acts like submit. Replace it with type="button" – Arvind Bhardwaj Commented Jun 26, 2014 at 9:13
  • @ArvindBhardwaj : i want to keep image only – Shaggy Commented Jun 26, 2014 at 9:14
  • If type="button" works, then use it. Since you want to keep the image, style the button in CSS using the image as the background. – afaolek Commented Jun 26, 2014 at 9:17
Add a ment  | 

3 Answers 3

Reset to default 4
$("#btnCancel").on('click', function () {
        window.location.href = 'default.aspx';
});

Use preventdefault:

$('input#btnCancel').on('click', function (e) {
        e.preventDefault();
        window.location.replace('default.aspx');
 });

Us on instead of live...and prevent default to stop the default behaviour.

  $(document).on('click','input[type="image"][id^="btnCancel"]',function(e){
       e.preventDefault();
       window.location.replace('default.aspx');
  });

live is deprecated

发布评论

评论列表(0)

  1. 暂无评论