gpt4 book ai didi

jquery - 我需要在 DIV 中插入 append jquery 的结果,只是 css 不能正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 04:13:41 25 4
gpt4 key购买 nike

这是我的 html 页面的摘录。

<!DOCTYPE html> 
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<title>jQuery Mobile Docs - Radio Buttons</title>
<link rel="stylesheet" href="http://view.jquerymobile.com/1.3.2/dist/demos/css/themes/default/jquery.mobile.min.css" />
<link rel="stylesheet" href=" http://view.jquerymobile.com/1.3.2/dist/demos/css/jquery.mobile.structure-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script language="javascript">
function insert(){
var myradio="<input type='radio' name='radio-1' id='radio-choice-2' value='radio-choice-2' /><label for='radio-choice-2'>Tiger</label>";
$("#space").html(myradio);
}
</script>
</head>
<body onLoad="insert()">
<div data-role="page">
<div data-role="content">
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Choose :</legend>
<input type="radio" name='radio-1' id='radio-choice-1' value="radio-choice-1" />
<label for="radio-choice-1">Cat</label>

<div id="space"></div>

<input type="radio" name='radio-1' id='radio-choice-3' value="radio-choice-3" />
<label for="radio-choice-3">Dog</label>
</fieldset>
</div>
</div><!-- /content -->
</div><!-- /page -->
</body>

在我的示例中,第一个和第三个单选检查显示完美的样式 css,但第二个单选检查不起作用或不显示样式 css。为什么?

最佳答案

创建了一个 fiddle 。你正在 append html。但不是在 jquery 移动中创建按钮

$("#space").append(myradio).trigger("create");

检查这个工作 fiddle fiddle

关于jquery - 我需要在 DIV 中插入 append jquery 的结果,只是 css 不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20292198/

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