1

我有这个简单的变量

var string = 'this is string id="textID" name="textName" title="textTitle" value="textVal"';
var id, name, title, value;

我需要过滤var string并获取此变量的值id, name, title, value
如何执行此操作?

4

2 回答 2

2

我已经使用了这个函数,因为你所有的属性都具有相同的形式,这很有效:

//
// inputs:
//   strText: target string
//   strTag: tag to search, can be id, name, value, title, ...
//
function getTagValue(strText, strTag)
{
  var i, j, loffset = strTag.length + 2;
  i = strText.indexOf(strTag + '="', 0);
  if(i >= 0)
  {
    j = strText.indexOf('"', i + loffset);
    if(j > i)
    {
      return strText.substring(i + loffset,  j);
    }
  }
  return "";
}

//
// main:
//
var string = 'this is string id="textID" name="textName" title="textTitle" value="textVal"';
var id, name, title, value;
console.log(string);

id = getTagValue(string, "id");
console.log(id);

name = getTagValue(string, "name");
console.log(name);

title = getTagValue(string, "title");
console.log(title);

value = getTagValue(string, "value");
console.log(value);
于 2013-10-24T19:29:32.310 回答
1

您可以通过索引获取值。就像我在下面所做的那样:

var stringValue = 'this is string id="textID" name="textName" title="textTitle" value="textVal"';


var indexOfID=stringValue.indexOf('id'); // find the index of ID

var indexOfEndQuoteID=stringValue.indexOf('"',(indexOfID+4)); // find the index of end quote 

var ID=stringValue.substring((indexOfID+4),(indexOfEndQuoteID)); // fetch the string between them using substring

alert(ID); // alert out the ID

同样,您可以对其他元素执行此操作。希望这可以帮助..!

于 2013-10-24T19:12:26.960 回答