首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

遏止页面元素默认行为发生的方式

2012-09-07 
阻止页面元素默认行为发生的方式1. javascript:void(0)如input type为submit时,form action属性设置为

阻止页面元素默认行为发生的方式
1. javascript:void(0)
如<input> type为submit时,<form> action属性设置为 javascript:void(0)
或<a>  href属性设置为 javascript:void(0)

2. event.preventDefault()

$('input#testbtn').click(    function($e) {        $e.preventDefault();    });

热点排行