jQuery根据锚标签的文本制作超链接

时间:2018-12-20 10:09:28

标签: javascript jquery jquery-plugins

我有下表,根据表中的文本,使表<td>的单元格可单击/超链接的最佳方法是什么。

<table id="fresh-table" class="table">
    <thead>
        <th data-field="id" data-sortable="true">ID</th>
        <th data-field="URL" data-sortable="true">URL</th>
        <th data-field="Results">Results</th>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td><a href="#">https://google.com</td>
            <td>Woot</td>
        </tr>     
        <tr>
            <td>1</td>
            <td><a href="#">https://facebook.com</td>
            <td>Hax</td>
        </tr>     
    </tbody>
</table>   
$(document).ready(function(){
    var x = $('.clickme').getText();
    console.log(x);
});

我想根据得到的文本替换href的值: https://google.comhttps://facebook.com

https://codepen.io/anon/pen/zyNdrZ

2 个答案:

答案 0 :(得分:2)

首先,请注意您的HTML无效;您缺少</a>标签来关闭table中的锚点。

第二,jQuery没有getText()方法。我认为您打算改用text()

关于您的问题,您可以使用prop()href元素的a属性设置为等于其text()。最简单的方法是为prop()提供一个函数,该函数将在集合中的每个元素上执行。试试这个:

$('#fresh-table a').prop('href', function() {
  return $(this).text();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table id="fresh-table" class="table">
  <thead>
    <th data-field="id" data-sortable="true">ID</th>
    <th data-field="URL" data-sortable="true">URL</th>
    <th data-field="Results">Results</th>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td><a href="#">https://google.com</a></td>
      <td>Woot</td>
    </tr>
    <tr>
      <td>1</td>
      <td><a href="#">https://facebook.com</a></td>
      <td>Hax</td>
    </tr>
  </tbody>
</table>

答案 1 :(得分:1)

只需几行代码,无需使用jQuery就可以实现:

document.addEventListener("DOMContentLoaded", () => {
  for (const element of document.querySelectorAll("a[href='#']")) {
    element.href = element.innerText;
  }
});

https://codepen.io/anon/pen/wRgqxB