如何使用 javascript 从 html 中提取信息

how to pull information out of html with javascript

我有这组代码,将 links 到 hta 页面的部分:

<ul>
    <li><strong>Windows 10</strong> comes with a new design and features.</li><br><br>
    <li><strong><a href="#" class="startLinks" id="Edge">Microsoft-Edge</a></strong> has been introduced as Microsoft's next generation web browser.</li><br><br>
    <li><strong><a href="#" class="startLinks" id="Skype">Microsoft Skype for Business</a></strong> is the Lync that you know . </li><br><br>
    <li><strong><a href="#" class="startLinks" id="FindPrinter">Printer list</a></strong> ........... </li><br><br>
    <li><strong><a href="#" class="startLinks" id="Email">Email Signature</a></strong> ........... </li>
</ul>

我希望 Microsoft edge、Microsoft skype for business、打印机列表和电子邮件签名成为 link,根据单击哪个 link,JavaScript 将使用 slider.gotoslide(x) 这里:

    $('div.Welcome a').click(function(){
        var itemClicked = 'div.Welcome a';
        if (itemClicked.index() === 0){  //Microsoft Edge
            slider.goToSlide(6); //slide 6
        }
        else if (itemClicked.index() === 1) { //Microsoft Skype for Business
            slider.goToSlide(10); //slide 10
        }
        else if (itemClicked.index() === 2) { //Find and Add Printers
            slider.goToSlide(15); //slide 15
        }
        else if (itemClicked.index() === 3) { // Email Signature
            slider.goToSlide(11); //slide 11
        }
        return false;
    });

如您所见,我需要 div.welcome a 告诉我点击了哪个 link,然后 if 语句告诉我要转到哪张幻灯片。但是索引说

Object doesn't support property or method "index"

使用$(this)

使用上面的表达式,您是 converting/wrapping 调用的元素 (this)(在本例中单击锚标记 ) jQuery .所以这个表达式的结果将是一个 jQuery 对象。

$(function(){

   $('div.Welcome a').click(function(e){
       e.preventDefault();  //prevent default link click behaviour

       var itemClicked = $(this);

       var id = itemClicked.attr("id");  //get the Id of the clicked a tag

       alert(id);
      //use id for your further code now

   });

});

Here 是一个有效的 jsBin 示例。

我觉得你需要改变的只是

var item = 'div.welcom a' to $('div.Welcome a');