js 根据<a>标签的内容来判断链接内容

2024-11-29 09:25:21
推荐回答(1个)
回答1:

$(document).ready(function () {
$("a").each(function () {
if ($.trim($(this).val()) == "样式1") {
$(this).attr("href", "链接1");
}
else if ($.trim($(this).val()) == "样式2") {
$(this).attr("href", "链接2");
}
});
});