0

我有一个选择行的功能,它来自警报框中的选定值。现在我希望该值存储在页面而不是警报框中。

这是功能,

var generic_lookup_Enr_Rds_Section2009_selected = function(id, to_s) { alert(id + to_s)}

它将所选值带入警报框中。我不想提醒值,而是想像标签或任何东西一样将值显示到页面中。可能吗?

4

2 回答 2

1

只需使用 jQuery文本功能:

function putStringInDiv(id, to_s){ $("'#"+id+"'").text(to_s); }

id 应该是你的 div 的 id。喜欢

<div id="myDiv"></div>

然后调用该函数会将文本分配到 div 中:

putStringInDiv('myDiv','some text here');
于 2012-10-04T09:01:26.587 回答
1
var add = function(id, to_s) {
   $(id).html(to_s);
}

您可能还想要appendprepend类似的。

你基本上需要在你想要发短信的地方调用函数。假设您span的页面上有一个带有class="placeholder". 不,你可以打电话add("span.placeholder", "Some text that should be displayed in the span")

id可以是页面上的任何元素。是应从上方
to_s放入的任何有效字符串或元素。id

于 2012-10-04T09:01:57.770 回答