2

我们需要用 jquery 替换部分 html 内容。

original_string = '<option value=\"\"><\/option>\n'
replacing_string = '<option value=""></option> <option value="11">2012/05/09</option> <option value="6">2012/07/03</option> '
$('#id').html().replace(original_string, replacing_string);

问题是原始字符串和替换字符串中都有一堆转义字符,并且html().replace无法执行。如何用转义字符替换字符串?谢谢。

基本上,我们正在向页面动态添加一个空选择选项。根据用户输入,需要将选择选项插入到内容中并呈现到屏幕上。html 操作发生在渲染之前。

更新: html 内容(对不起,它是大量的)

<div id="invoice_against_lease" style="display: none;">
<a onclick="add_nest_fields(this, "invoice_items", "<div class=\"fields\">\n<div class=\"input select optional\"><label class=\"select optional\" for=\"invoice_invoice_items_attributes_new_invoice_items_lease_usage_record_id\">Record#:&lt;\/label><select class=\"select optional\" id=\"invoice_invoice_items_attributes_new_invoice_items_lease_usage_record_id\" name=\"invoice[invoice_items_attributes][new_invoice_items][lease_usage_record_id]\"><option value=\"\"><\/option>\n<\/select><\/div>\n<input id=\"invoice_invoice_items_attributes_new_invoice_items__destroy\" name=\"invoice[invoice_items_attributes][new_invoice_items][_destroy]\" type=\"hidden\" value=\"false\" /><a href=\"#\" onclick=\"remove_nest_fields(this); return false;\">Delete<\/a>\n<\/div>\n"); return false;" href="#">Add Record</a>
</div>
4

1 回答 1

4

如果$('#id')是对您的引用,<select...那么您应该能够简单地将所有选项替换为$('#id').html(replacing_string);

编辑:

如果$('#id')是父 div 的 id,则代码仅略有变化:

$('#id select').html(replacing_string);

(当然,除非您在该 div 中有多个选择,那么您必须提供更多详细信息,以便我们可以帮助您选择正确的选择...)

于 2012-07-26T19:33:13.287 回答