本文介绍了如何在javascript中将标签文本值传递给变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用了这段代码

I used this code

var start = document.getElementById('<%= Label3.ClientID %>');
var end = document.getElementById('<%= Label4.ClientID %>');





但它不起作用。请帮助我。



But it's not working.Please help me.

推荐答案

<script>
  var start= document.getElementById('Label3').innerHTML;
  var end= document.getElementById('Label4').innerHTML;
</script>





问候..:)



Regards.. :)


这篇关于如何在javascript中将标签文本值传递给变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 22:22