Side navigation
#12596 closed bug (invalid)
Opened September 24, 2012 03:36AM UTC
Closed October 09, 2012 08:40AM UTC
$('body',window.frames[0].document).append($testShow) bug
Reported by: | anonymous | Owned by: | anonymous |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- the same bug at jquery-1.6.3.min.js -->
<!-- <script src="jquery-1.6.3.min.js" type="text/javascript" ></script> -->
<script src="jquery-1.8.2.min.js" type="text/javascript" ></script>
<script type="text/javascript">
$(function(){
var $testShow =$('<span>append jquery object</span>');
var testString ='<span>append String</span>';
$('body',window.frames[0].document).append(testString);
try{
$('body',window.frames[0].document).append($testShow);
}catch(e){
alert(e.message); //参数无效
}
});
</script>
</head>
<body>
<iframe src=""></iframe>
</body>
</html>
Attachments (0)
Change History (2)
Changed September 24, 2012 03:21PM UTC by comment:1
owner: | → anonymous |
---|---|
status: | new → pending |
Changed October 09, 2012 08:40AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/. Open the link and click to "Fork" (in the top menu) to get started.