jsp中onclick传递当前button里的value
<inputtype="button"id="seven"name="seven"value="7"onclick="sendValue()"><script>funct...
<input type="button" id="seven" name="seven" value="7" onclick="sendValue()">
<script>
function sendValue(){
alert(this.value);
}
</script>
为什么会是undefined? 展开
<script>
function sendValue(){
alert(this.value);
}
</script>
为什么会是undefined? 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
展开全部
你改成这样就行了:
<input type="button" id="seven" name="seven" value="7" onclick="sendValue(this)">
<script>
function sendValue(btu){
alert(btu.value);
}
</script>
<input type="button" id="seven" name="seven" value="7" onclick="sendValue(this)">
<script>
function sendValue(btu){
alert(btu.value);
}
</script>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询