`
orcl_zhang
  • 浏览: 243177 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

val()和text()

阅读更多
   今天下午被一段js代码搞疯了,写了无数个alert,最后终于发现问题的所在,原来是有一处input中的value取值用了text().
    google了下,查了查前辈的经验。text()可以取的所有匹配元素的文本,val()用于取的值。
    看了看jquery的api是这样解释的。
    text()取得所有匹配元素的内容。结果是由所有匹配元素包含的文本内容组合起来的文本。这个方法对HTML和XML文档都有效。返回值:String
    val()获得第一个匹配元素的当前值。在 jQuery 1.2 中,可以返回任意元素的值了。包括select。如果多选,将返回一个数组,其包含所选的值。返回值String,Array
分享到:
评论

相关推荐

    jquery中html、val与text三者属性取值的联系与区别介绍

    - html、text和val都可以用来设置元素内容,但html用于设置HTML内容,text用于设置文本内容,而val用于设置表单元素的值。 - html方法返回或接受的是HTML字符串,可以包含HTML标签;text方法返回或接受纯文本,会...

    JQ 获取和设置内容 text() html() val()

    本篇文章将详细讲解jQuery中获取和设置内容的三个主要方法:`text()`, `html()`, 和 `val()`。这些方法在网页动态交互和数据处理中扮演着至关重要的角色。 首先,`text()`方法用于获取或设置元素的文本内容。当你想...

    VB 制作的计算器

    a = Val(Text1.Text) b = Val(Text2.Text) c = a + b Text3.Text = c End Sub Private Sub Command2_Click() a = Val(Text1.Text) b = Val(Text2.Text) c = a - b Text3.Text = c End Sub Private Sub Command3_...

    发动机工作过程计算VB源代码(包括汽油机和柴油机) .rar

    D = Val(Text1.Text) S = Val(Text2.Text) Ne = Val(Text3.Text) nh = Val(Text4.Text) ε = Val(Text5.Text) L = Val(Text6.Text) R = Val(Text7.Text) ge = Val(Text8.Text) P0 = Val(Text13.Text) T0 =...

    发动机工作过程计算VB源代码(包括汽油机和柴油机) 1.rar

    D = Val(Text1.Text) S = Val(Text2.Text) Ne = Val(Text3.Text) nh = Val(Text4.Text) ε = Val(Text5.Text) L = Val(Text6.Text) R = Val(Text7.Text) ge = Val(Text8.Text) P0 = Val(Text13.Text) T0 =...

    简单万年历

    S = fun(Val(Text1.Text), Val(Text2.Text)) End Sub Private Sub Command4_Click() If Val(Text1.Text) Text1.Text = 13 Text2.Text = Val(Text2.Text) - 1 End If Text1.Text = Val(Text1.Text) - 1 S = fun...

    发动机工作过程计算VB源代码(包括汽油机和柴油机)

    D = Val(Text1.Text) S = Val(Text2.Text) Ne = Val(Text3.Text) nh = Val(Text4.Text) ε = Val(Text5.Text) L = Val(Text6.Text) R = Val(Text7.Text) ge = Val(Text8.Text) P0 = Val(Text13.Text) T0 =...

    jQuery中text() val()和html()的区别实例详解

    在jQuery中,text()、val()和html()这三个函数都是用于操作DOM元素内容的,但它们在使用上存在明显的区别,下面将详细解释这些区别并提供实例。 首先,text()函数主要用于获取或设置匹配元素集合中每个元素的合并...

    VB整源码判断字符串中某一字符是否大写.rar

     If Asc(Mid(Text1, Val(Text2), 1)) >= 65 And Asc(Mid(Text1, Val(Text2), 1))  Label2.Caption = "位为大写"  Else  If Asc(Mid(Text1, Val(Text2), 1)) >= 97 And Asc(Mid(Text1, Val(Text2), 1))  Label...

    VB Val与汉字的相互转化.rar

    VB 数字与字符串的相互转换(汉字区位码与汉字的相互转化)的例子,主要是使用Val函数来实现转换功能,Val的用法很简单,如Text4.Text = Val(Text3),将此行代码添加到自定义的按钮事件中即可,当用户单击按钮后,可...

    jQuery操作attr、prop、val()/text()/html()、class属性

    attr和prop方法用于操作属性,val()、text()和html()用于操作值和内容,而class方法则用于操作样式类。通过实例代码和解释,相信大家能够更好地理解和应用这些方法来处理网页元素的动态交互。如果对文中内容有任何...

    VB 为 RichTextBox 设置段落缩进.rar

     Form1.RichTextBox1.SelHangingIndent = Val(Text1.Text) '首行悬挂缩进  Form1.RichTextBox1.SelIndent = Val(Text2.Text) '左缩进  Form1.RichTextBox1.SelRightIndent = Val(Text3.Text) '右缩进  Unload Me...

    VB计算机窗口设计

    Text1.Text = Val(Text2.Text) + Val(Text1.Text) '执行加法 Case "-" Text1.Text = Val(Text2.Text) - Val(Text1.Text) '执行减法 Case "*" Text1.Text = Val(Text2.Text) * Val(Text1.Text) '执行乘法 Case ...

    『jQuery』.html(),.text()和.val()的概述及使用

    其中,.html()、.text()和.val()是jQuery中用于操作元素内容的三个核心方法。通过这些方法,开发者可以方便地读取或修改页面元素的HTML结构、文本内容以及表单元素的value值。 首先,我们来详细探讨.html()方法。这...

    VB计算器源代码.docx

    Text1.Text = Data - Val(Text1.Text) Case 3 ' 乘法 Text1.Text = Data * Val(Text1.Text) Case 4 ' 除法 If Val(Text1.Text) <> 0 Then ' 避免除数为0的情况 MsgBox "除数不等于0" Exit Sub Else Text1....

    Access实验报告.doc

    x = Val(Text1.Text) y = Val(Text2.Text) z = Val(Text3.Text) If x min = x ElseIf y min = y Else min = z End If Text4.Text = CStr(min) End Sub ``` 2. **圆的面积和周长计算**:在"分支2...

    2012年01月福建信息技术会考上机操作题答案.pdf

    其中,`Val(text1.Text)`获取text1文本框中的数值,然后根据模运算结果判断并输出结果到text3。 3. **比较两个整数大小并输出较大值** 此题要求比较两个输入的整数a和b,并在text3中输出较大的数。VB中可以使用If...

Global site tag (gtag.js) - Google Analytics