使用jquery在ASP.NET的表的文本框中插入数据 [英] Insert data in textbox of table in ASP.NET using jquery

查看:50
本文介绍了使用jquery在ASP.NET的表的文本框中插入数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我已经在aspx文件的表中创建的文本框中插入数据,所以当我点击按钮jquery函数调用时,我想在表格的文本框中插入数据。我怎样才能做到这一点 ? 

我尝试过:

i尝试过这样的文本框id = mesgbox
< pre> $( [id * = mesgbox])。text(Hello World)

解决方案

([id * = mesgbox]) .text(Hello World)


Quote:

我想要通过([id * = mesgbox])来接受它的id





为它添加内部引号

 


([id * ='mesgbox'])



参考 Attribute包含Selector | jQuery API文档 [ ^ ]


i want to insert data in text box which i have already created in a table in aspx file, so when i click button jquery function calls and there i want to insert data into textbox of table. how can i do that ?

What I have tried:

i have tried it like this as my textbox id = mesgbox 
  <pre>$("[id*=mesgbox ]").text("Hello World")

解决方案

("[id*=mesgbox ]").text("Hello World")


Quote:

i want to acccess its id by ("[id*=mesgbox ]")



add inner quotes to it


("[id*='mesgbox']")


refer Attribute Contains Selector | jQuery API Documentation[^]


这篇关于使用jquery在ASP.NET的表的文本框中插入数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆