乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
js获取html标签属性值 | chenzuoli's blog

js获取html标签属性值

如果需要通过js获取某个标签的属性,有以下方法。

  1. 通过id

    1
    2
    3
    4
    5
    6
    $(function(){
    let row = $("#id");
    let qrcode_img_base64 = row.getAttribute("content_qrcode_base64");
    let qrcode_path = row.getAttribute("qrcode_path")
    let amount = row.getAttribute("amount")
    })
  2. 通过标签
    html文件中添加标签:aria-label=”qrcode”

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    <tbody>
    {% for qrcode in qrcode_all %}
    <tr>
    <td width="20%">{{ qrcode.content_id }}</td>
    <td width="20%">{{ qrcode.content_type }}</td>
    <td width="20%">
    <a href="#" aria-label="qrcode" id="showQRCode_{{ qrcode.content_id }}"
    qrcode_path="{{ qrcode.qrcode_path }}" amount="{{ qrcode.amount }}"
    content_qrcode_base64="{{ qrcode.content_qrcode_base64}}" rel="showQRCode">显示二维码</a>
    </td>
    <td width="20%">{{ qrcode.amount }}</td>
    <td width="20%">{{ qrcode.create_time }}</td>
    </tr>
    {% endfor %}
    </tbody>
1
2
3
4
5
6
7
8
9
10
11
12
13
$(function(){
var x = document.querySelectorAll("[aria-label='qrcode']");
for(var i=0; i < x.length; i++){
let row = x[i]
let row_id = row.id
let qrcode_img_base64 = row.getAttribute("content_qrcode_base64");
let qrcode_path = row.getAttribute("qrcode_path")
let amount = row.getAttribute("amount")
console.log(row_id)
console.log(qrcode_img_base64)
console.log(qrcode_path)
}
})
-------------本文结束感谢您的阅读-------------