gpt4 book ai didi

javascript - 从外部页面加载属性

转载 作者:行者123 更新时间:2023-11-30 12:20:08 24 4
gpt4 key购买 nike

我有这个:

$(document).ready(function () {
$("#result").load("file.html *HERE*");
});

HERE 中,我只想搜索具有“fontsize:20pt”的元素。有可能吗?

谢谢

最佳答案

根据specs

如果有selector可以根据您的要求创建,答案是肯定的。

$("#result").load("file.html .pt20"); // if there's a class on the object

如果没有,如果你有办法识别它们,你可以在之后提取元素 - 注意我们需要使用另一种 ajax 方法 - 这里使用 $.get:

DEMO

$(function() {
$.get("filept.html",function(data) {
$(data).find("p").each(function() {
var fs = $(this).css("font-size"); // note: "20pt" or 26.nnn for computed size
if (parseInt($(this).css("font-size"),10) == 20) {
$("#result").append($(this));
}
});
});
});

关于javascript - 从外部页面加载属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31378789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com