onclickthis.value)代码详解
<html> <head> <script language="javascript"> function testvalue){ ifvalue=='1') { alert"11111111"); }else{ alert"00000000"); } } </script> </head> <body> <form name="form1" method="post" action=""> <input type="radio" name="ra" value="1" onclick="testthis.value)"/> 个人 <input type="radio" name="ra" value="0" onclick="testthis.value)""/> 公司 </form> </body> </html>
2.onclickthis)代码详解
一般标签中会使用href和onclick两种方式来进行进行页面跳转或执行动作,但是小编一般都会使用onclick来进行执行Ajax函数进行跳转,并同时使用onclick=”xxxxxxthis)”来传递动态参数:例子如下
JSP代码如下:
<a href="javascript:void0);" onclick="xxxxthis)" userId=${userId}>${userName}></a>
Js代码如下:
function xxxxobj) { var thisObj=$obj);//js对象转jquery对象 var userId=thsiObj.attr"userId"); alertuserId); }
一般会将href写为“javascript:void0)” 而不是“#”,因为可以防止不必要的页面跳动;
而this指的就是a标签这个对象