gpt4 book ai didi

javascript - php 中新行的 jQuery 语法是什么?

转载 作者:行者123 更新时间:2023-12-03 06:59:29 25 4
gpt4 key购买 nike

我试图在 jQuery 中找到运算符,以便在 php 中的 jq 代码时在下一行编写代码
这是我的工作代码:-

        <?php
$addoldgoldrow = '
$(document).on("click",".add_btns",function(e) {
e.preventDefault();
var markups = "<tr class=\'rowaccs\'><td><input type=\'text\' class=\'sl_no\' name=\'sl_no[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'oweight inputbox input_table1\' name=\'oweight[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'ostone_weight inputbox input_table1\' name=\'ostone_weight[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'ovd inputbox input_table1\' name=\'ovd[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'onet_weight inputbox input_table1\' name=\'onet_weight[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'orate inputbox input_table1\' name=\'orate[]\' value=\'' . $metal_rate . '\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'oamount inputbox input_table1 table1_end row_end\' name=\'oamount[]\' style=\'width: 100%\' readonly></td><td><span class=\'rowcloseoldgold\'><i class=\'fa fa-times\' style=\'color: #C11429;\' aria-hidden=\'true\'></i></span></td</tr>";
$("table#old_gold tbody").append(markups);
indexassigneroldpurchase();
});
';
$this->registerJs($addoldgoldrow, View::POS_READY);
?>
我正在尝试这样做
     <?php
$addoldgoldrow = '
$(document).on("click",".add_btns",function(e) {
e.preventDefault();
var markups = "<tr class=\'rowaccs\'>
<td><input type=\'text\' class=\'sl_no\' name=\'sl_no[]\' style=\'width: 100%\'></td>
<td><input type=\'text\' class=\'oweight inputbox input_table1\' name=\'oweight[]\' style=\'width: 100%\'></td>
<td><input type=\'text\' class=\'ostone_weight inputbox input_table1\' name=\'ostone_weight[]\' style=\'width: 100%\'></td>
<td><input type=\'text\' class=\'ovd inputbox input_table1\' name=\'ovd[]\' style=\'width: 100%\'></td>
<td><input type=\'text\' class=\'onet_weight inputbox input_table1\' name=\'onet_weight[]\' style=\'width: 100%\'></td>
<td><input type=\'text\' class=\'orate inputbox input_table1\' name=\'orate[]\' value=\'' . $metal_rate . '\' style=\'width: 100%\'></td>
<td><input type=\'text\' class=\'oamount inputbox input_table1 table1_end row_end\' name=\'oamount[]\' style=\'width: 100%\' readonly></td>
td><span class=\'rowcloseoldgold\'><i class=\'fa fa-times\' style=\'color: #C11429;\' aria-hidden=\'true\'></i></span></td</tr>";
$("table#old_gold tbody").append(markups);
indexassigneroldpurchase();
});
';
$this->registerJs($addoldgoldrow, View::POS_READY);
?>
+ 运算符不起作用
我试过“+”和“+”
理想情况下使用什么运算符来连接这些线路?

最佳答案

只需添加 \在每一行的末尾
所以你的代码看起来像这样:

$addoldgoldrow = '    
$(document).on("click",".add_btns",function(e) {
e.preventDefault();
var markups = "<tr class=\'rowaccs\'> \
<td><input type=\'text\' class=\'sl_no\' name=\'sl_no[]\' style=\'width: 100%\'></td> \
<td><input type=\'text\' class=\'oweight inputbox input_table1\' name=\'oweight[]\' style=\'width: 100%\'></td> \
<td><input type=\'text\' class=\'ostone_weight inputbox input_table1\' name=\'ostone_weight[]\' style=\'width: 100%\'></td> \
<td><input type=\'text\' class=\'ovd inputbox input_table1\' name=\'ovd[]\' style=\'width: 100%\'></td> \
<td><input type=\'text\' class=\'onet_weight inputbox input_table1\' name=\'onet_weight[]\' style=\'width: 100%\'></td> \
<td><input type=\'text\' class=\'orate inputbox input_table1\' name=\'orate[]\' value=\'' . $metal_rate . '\' style=\'width: 100%\'></td> \
<td><input type=\'text\' class=\'oamount inputbox input_table1 table1_end row_end\' name=\'oamount[]\' style=\'width: 100%\' readonly></td> \
td><span class=\'rowcloseoldgold\'><i class=\'fa fa-times\' style=\'color: #C11429;\' aria-hidden=\'true\'></i></span></td</tr>";
$("table#old_gold tbody").append(markups);
indexassigneroldpurchase();
}); ';

关于javascript - php 中新行的 jQuery 语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64399672/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com