获取html页面中的javascript变量值
我在 MVC 中单击链接时声明变量。为其分配“li”文本的值我想在我的 Html 页面中访问此变量。或者我们可以在脚本之外说。
这是代码片段。我只想在页面上访问 name 变量的值。
<script type="text/javascript">
$("a.commentLink").live("click", function () {
var name = $(this).closest("li").text();
});
</script>
提前致谢。
I am declaring variable in the click of a link in MVC. Assigning it the value of the "li" text I want to access this variable in my Html page. Or we can say outside the script.
Here is the code snippet.I just want the value of name variable to be accessed on the page.
<script type="text/javascript">
$("a.commentLink").live("click", function () {
var name = $(this).closest("li").text();
});
</script>
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放在表单中的元素中,例如
然后在代码中:
Place it in an element within your form, e.g.
And then in code:
mainPage.jsp:您的脚本页面
Demo.jsp ----:在这里您可以为 Session 变量设置值,以便您访问任何
在项目中或设置为 URL 参数
enqueue 函数可以从 ajax 文件访问 --
对于 Ajax 文件:如何转换 JavaScript变量到 Java 变量?
mainPage.jsp: Your Script page
Demo.jsp ----: here you can set value to a Session variable so that you access any
were in project or set to a URL parameter
enqueue function can be accessed from ajax file --
For Ajax File : How can I convert a JavaScript variable to a Java variable?