如何使用jquery检索文本框的标题和名称?
答案 0 :(得分:9)
$('#textbox').attr('title')
$('#textbox').attr('name')
答案 1 :(得分:4)
Textbox,就像输入元素一样?根据文档中的位置,您的选择器可能会有所不同,但我假设您已经为其指定了ID,因此HTML看起来像这样:
<input type="text" title="tehTitle" name="tehName" id="textBox" />
由于jQuery选择器使用CSS语法,我们可以target by id
attribute:
$("input#textBox") // more to come...
然后,您可以使用jQuery attr function来读取它的标题和名称属性。
var title = $("input#textBox").attr("title");
var name = $("input#textBox").attr("name");
答案 2 :(得分:1)
var attributeText = $("#textboxID").attr("attributeYouWantToRetrieve");
只需替换attributeYouWantToRetrieve
的标题和名称答案 3 :(得分:0)
var theTextBox = $('textarea');
var itsTitle = theTextBox.attr('title');
var itsName = theTextBox.attr('name');
也许你应该做更多的教程:|