jquery获取变量的值?解决方法
jquery获取变量的值??????C# codescript typetext/javascriptvar ContentTHIS IS MY JS CONTENT
jquery获取变量的值??????
C# code<script type="text/javascript"> var Content='THIS IS MY JS CONTENT'; </script>$(document).ready(function(){$("#myButton").click(function(){alert(Content);});});
jquery如何获取js变量Content的值?
另外.cs页面中public string abc = “abcdefg”;jquery如何可以获得abc的值?
[解决办法]直接获取就是了。。。。jquery就是js啊。
var Content='THIS IS MY JS CONTENT';
你都写好了。
alert(Content);
难道不出来?
[解决办法]jquery只是对js进行一个封装的,