如果你想在另一个内嵌一个锚定链接怎么办?

时间:2016-03-25 07:40:55

标签: html html5

HTML:

var MyPagePO = require('mypage.po.js');

describe('Login Page Tests.', function () {
    var myPagePO = new MyPagePO();

    beforeEach(function () {
        //...
    });

    it('Some case.', function () {
        expect(myPagePO.emailInput.getText()).toBe('some');
        expect(myPagePO.title.getText()).toBe('some');
    });
});

浏览器解析器将其读取为:

<a href="#link1">link one text, 
   <a href="link2">link two text</a>
link1 on continue.</a>

2 个答案:

答案 0 :(得分:1)

找到一个解决方案:

HTML:

public IEnumerable<object> PorcentajeState(Guid id)
    {
        return _context.Sates.Where(a => a.Id == id)
                             .GroupBy(a => a.StateId)
                             .Select(g => new { g.Key, Count = g.Count() });
    }

浏览器解析器将其读取为:

public IEnumerable<object> PorcentajeState(Guid id)
        {
            return _context.Sates.Where(a => a.Id == id)
                                 .GroupBy(a => a.StateId)
                                 .Select(g => new { g.Key.StateId, Count = g.Count() });
        }

<强>小提琴 Demo

答案 1 :(得分:0)

普通的html无法做到这一点。我认为,这也会让用户感到非常困惑。你究竟想做什么?