一个onclick事件触发一个函数,如何将该元素的对象作为函数的参数传过去

 我来答
五个爪子抓妈拐
2018-03-31 · TA获得超过2.3万个赞
知道大有可为答主
回答量:162
采纳率:100%
帮助的人:4.6万
展开全部
<head>
<meta charset="utf-8">
<style>
body div{width:60%;height:400px;margin:50px 0;border:1px solid red}
</style>
<script type="text/javascript">
//表单验证
function Check(obj){
if(obj.username.value == ''){
alert('请输入账号');
obj.username.focus();
return false;
}
}

//元素改变
function ChangeEle(obj){
if(obj.innerHTML == '我是div元素'){
obj.innerHTML = 'Hello World';
obj.style.backgroundColor = 'red';
}
}
</script>
</head>
<body>

<!--把表单对象作为参数传进js函数里-->
<form name="login" action="index.php" method="post" onsubmit="return Check(document.login)">
账号:<input type="text" name="username" /><br />
密码:<input type="password" name="passwd" /><br />
<input type="submit" />
</form>

<!--把元素对象作为参数传进js函数里-->
<div onclick="ChangeEle(this)">我是div元素</div>

</body>
 public void onShowPromptDialog1(View v){  
         //inflate需要显示到Dialog里的View对象  
         LayoutInflater li = LayoutInflater.from(this);  
         View view = li.inflate(R.layout.addfriend, null);  
        
         AlertDialog.Builder builder = new AlertDialog.Builder(this);  
         builder.setTitle("输入群名称");  
         builder.setIcon(R.drawable.icon);  
         //之前inflate的View 放到dialog中  
         builder.setView(view);  
         builder.setPositiveButton("确定", this);  
         builder.setNegativeButton("取消", this);  
         builder.create().show();          
     }
     
}

参考资料

CSDN.CSDN[引用时间2018-1-6]

枫木桎梏
2017-01-09 · TA获得超过426个赞
知道小有建树答主
回答量:307
采纳率:0%
帮助的人:165万
展开全部
<head>
<meta charset="utf-8">
<style>
body div{width:60%;height:400px;margin:50px 0;border:1px solid red}
</style>
<script type="text/javascript">
//表单验证
function Check(obj){
if(obj.username.value == ''){
alert('请输入账号');
obj.username.focus();
return false;
}
}

//元素改变
function ChangeEle(obj){
if(obj.innerHTML == '我是div元素'){
obj.innerHTML = 'Hello World';
obj.style.backgroundColor = 'red';
}
}
</script>
</head>
<body>

<!--把表单对象作为参数传进js函数里-->
<form name="login" action="index.php" method="post" onsubmit="return Check(document.login)">
账号:<input type="text" name="username" /><br />
密码:<input type="password" name="passwd" /><br />
<input type="submit" />
</form>

<!--把元素对象作为参数传进js函数里-->
<div onclick="ChangeEle(this)">我是div元素</div>

</body>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yeshohoho
2012-06-08 · 超过27用户采纳过TA的回答
知道答主
回答量:81
采纳率:0%
帮助的人:62.7万
展开全部
你要传什么过去. onclick 里只有一个view 阿
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式