admin管理员组文章数量:1345179
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
3 Answers
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
本文标签: javascriptinput type image click event in jqueryStack Overflow
版权声明:本文标题:javascript - input type image click event in jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743807768a2542492.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论