我正在使用.load
jQuery 中的函数将页面的一部分加载到另一个页面中
$("#loadingDockShotPg").load("include/shot_comments.php?id="+get['id']);
在我正在加载到 id 为“loadingDockShotPg”的 div 的文件中,其中有一些元素,我希望在其中受到我的 jQuery 命令的影响。
被放入另一个页面的 HTML 使用.load
<textarea id='newNoteTextarea' class='width100 hidden' placement='Write a comment...'></textarea>
放置在上面的 HTML 所在的父文件中的 jQuery
$(document).ready(function(){
$("input[placement], textarea[placement]").each(function(){
var orAttr = $(this).attr("placement");
$(this).val(orAttr);
$(this).focus(function(){
if($(this).val() == orAttr)
{
$(this).val("");
}
});
$(this).blur(function(){
if($(this).val() == "")
{
$(this).val(orAttr);
}
});
});
});
问题是我的 textarea 不受应该将放置属性放在 textarea 值中的 jQuery 的影响。我必须做什么才能完成这项工作?