gpt4 book ai didi

jquery - 如何让这行 jQuery 验证为严格的 XHTML

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:42 26 4
gpt4 key购买 nike

我的页面顶部有这段 jQuery(用于简单的图像轮播):

$(document).ready(function(){   
$("#slider").easySlider({
prevText:'<div id="backarrow">Back</div>',
nextText:'<div id="nextarrow">View Other Projects</div>',
orientation:'horizontal'
});
});

但是,我无法让它严格验证 XHTML:

Line 12, Column 33: document type does not allow element "div" here

有什么想法吗?

最佳答案

<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(function(){
$("#slider").easySlider({
prevText:'<div id="backarrow">Back</div>',
nextText:'<div id="nextarrow">View Other Projects</div>',
orientation:'horizontal'
});
});
/* ]]> */
</script>

这告诉验证器将脚本解释为字符数据,而不是标记,因此它不会解析 CDATA block 的结构。维基百科has more info .

关于jquery - 如何让这行 jQuery 验证为严格的 XHTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/913717/

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