一旦页面加载,自动弹出textarea

时间:2012-04-01 06:48:13

标签: java php javascript html

附件选择是我当前正在使用的用户界面。它包含描述我关于自动弹出文本区域字段的问题。

ScreenShot

我有一个文本字段,可以在加载页面后自动生成链接。现在我想复制相同的链接并使其出现在文本区域中。

我一直试图解决这个问题,但它不适用于文本区域,如果字段是文本字段,我可以让它工作,但只是这样调用它:

Value="the id of the textarea that generate the link" 

如何让它适用于文本区域?

1 个答案:

答案 0 :(得分:0)

首次登录后,显示唯一链接的输入框在id属性中显示returningcode,刷新页面后,它将更改为successcode。除此之外,我发现2个HTML元素具有相同的id,因此我们不能使用#selector。

这应该有效:

$(window).load({
    var unique_url = $('div#monetize-form > ul > li:eq(19) > input[type="text"]').val();
    $('div#monetize-form > ul > li:eq(13) > textarea').val(unique_url);
    $('div#monetize-form > ul > li:eq(14) > textarea').val(unique_url);
});